hdu2227---Find the nondecreasing subsequences (dp+ 트리 배열)
Input The input consists of multiple test cases. Each case begins with a line containing a positive integer n that is the length of the sequence S, the next line contains n integers {s1, s2, s3, …., sn}, 1 <= n <= 100000, 0 <= si <= 2^31.
Output For each test case, output one line containing the number of nondecreasing subsequences you can find from the sequence S, the answer should % 1000000007.
Sample Input
3 1 2 3
Sample Output
7
Author 8600
Recommend lcy | We have carefully selected several similar problems for you: 2642 2688 1541 3030 3015
dp[i]는 i번째 원소로 끝나는 불하강 서열 개수 dp[i]=∑i-3-1j=1dp[j]+1n이 10만에 달하기 때문에 나무형 수조로 최적화
/************************************************************************* > File Name: hdu2227.cpp > Author: ALex > Mail: [email protected] > Created Time: 2015 06 02 18 33 24 ************************************************************************/
#include <functional>
#include <algorithm>
#include <iostream>
#include <fstream>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <queue>
#include <stack>
#include <map>
#include <bitset>
#include <set>
#include <vector>
using namespace std;
const double pi = acos(-1.0);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;
typedef pair <int, int> PLL;
static const int N = 100010;
static const int mod = 1000000007;
LL tree[N];
int lowbit(int x) {
return x & (-x);
}
void add(int n, int x, LL val) {
for (int i = x; i <= n; i += lowbit(i)) {
tree[i] += val;
tree[i] %= mod;
}
}
LL sum(int x) {
LL ans = 0;
for (int i = x; i; i -= lowbit(i)) {
ans += tree[i];
ans %= mod;
}
return ans;
}
LL dp[N];
int Arr[N];
int xis[N];
int cnt;
int search(int val) {
int l = 1, r = cnt;
int mid;
while (l <= r) {
mid = (l + r) >> 1;
if (xis[mid] == val) {
break;
}
if (xis[mid] > val) {
r = mid - 1;
}
else {
l = mid + 1;
}
}
return mid;
}
int main() {
int n;
while (~scanf("%d", &n)) {
cnt = 0;
memset(tree, 0, sizeof(tree));
for (int i = 1; i <= n; ++i) {
scanf("%d", &Arr[i]);
xis[++cnt] = Arr[i];
}
sort(xis + 1, xis + cnt + 1);
cnt = unique(xis + 1, xis + cnt + 1) - xis - 1;
memset(dp, 0, sizeof(dp));
LL ans = 0;
for (int i = 1; i <= n; ++i) {
int val = search(Arr[i]);
LL Sum = sum(val);
dp[i] = 1 + Sum;
dp[i] %= mod;
add(n, val, dp[i]);
ans += dp[i];
ans %= mod;
}
printf("%lld
", ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.