#include <bits/stdc++.h> #include "message.h" #include "teatr.h" using namespace std; const int m=1e6+10; int t[m+10]; int n,i; long long a=0; void u(int x) { if(x>m) return; t[x]++; u(x+(x&(-x))); } int s(int x) { if(x==0) return 0; return t[x]+s(x-(x&(-x))); } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); n=GetN(); if(MyNodeId()) return 0; for(i=0;i<n;i++) { a+=s(m-GetElement(i)-1); u(m-GetElement(i)); } cout<<a; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #include <bits/stdc++.h> #include "message.h" #include "teatr.h" using namespace std; const int m=1e6+10; int t[m+10]; int n,i; long long a=0; void u(int x) { if(x>m) return; t[x]++; u(x+(x&(-x))); } int s(int x) { if(x==0) return 0; return t[x]+s(x-(x&(-x))); } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); n=GetN(); if(MyNodeId()) return 0; for(i=0;i<n;i++) { a+=s(m-GetElement(i)-1); u(m-GetElement(i)); } cout<<a; } |