FZ??http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vciBleGFtcGxlLCBsb29rIGF0IHRoZSBtYXAgc2hvd24gb24gdGhlIGZpZ3VyZSBhYm92ZS4gTGV2ZWwgb2YgdGhlIHN0YXIgbnVtYmVyIDUgaXMgZXF1YWwgdG8gMyAoaXQ="s formed by three stars with a numbers 1, 2 and 4). And the levels of the stars numbered by 2 and 4 are 1. At this map there are only one star of the level 0, two stars of the level 1, one star of the level 2, and one star of the level 3.
You are to write a program that will count the amounts of the stars of each level on a given map.
5 1 1 5 1 7 1 3 3 5 5
1 2 1 1 0
直接统计不大于当前数的个数,然后hash记录。
#include#include #include #include #include #include #include #include #define lson o<<1, l, m #define rson o<<1|1, m+1, r using namespace std; typedef long long LL; const int mod = 99999997; const int MAX = 0x3f3f3f3f; const int maxn = 15050; const int N = 32005; int n, a, b; int c[N], ans[maxn]; int main() { while(~scanf("%d", &n)) { memset(c, 0, sizeof(c)); memset(ans, 0, sizeof(ans)); int k = 0; for(int i = 1; i <= n; i++) { scanf("%d%d", &a, &b); a++; int sum = 0; for(int j = a; j > 0; j -= j&(-j)) sum += c[j]; for(int j = a; j <= N; j += j&(-j)) c[j]++; ans[sum]++; } for(int i = 0; i < n; i++) printf("%d\n", ans[i]); } return 0; }