結果
問題 | No.121 傾向と対策:門松列(その2) |
ユーザー | yaoshimax |
提出日時 | 2015-03-30 00:11:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,152 bytes |
コンパイル時間 | 931 ms |
コンパイル使用メモリ | 101,212 KB |
実行使用メモリ | 120,492 KB |
最終ジャッジ日時 | 2024-07-03 22:49:25 |
合計ジャッジ時間 | 10,679 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 94 ms
33,180 KB |
testcase_01 | AC | 157 ms
34,184 KB |
testcase_02 | AC | 19 ms
30,080 KB |
testcase_03 | AC | 654 ms
40,408 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 675 ms
40,540 KB |
testcase_06 | AC | 483 ms
38,376 KB |
testcase_07 | AC | 554 ms
38,784 KB |
testcase_08 | AC | 773 ms
40,668 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <cstring> using namespace std; class BIT{ /*binary indexed tree*/ private: vector<int> data; int size; public: BIT(int n): data(n+1,0),size(n){ return; } int sum(int l, int r ){ // return sum in [l+1,r] or (l,r] return sum_(r)-sum_(l); } int sum_(int i){ // return sum (0, i] int ans = 0; while( 0 < i ){ ans += data[i]; i -= i&-i; // 11010110 -> 1010100 } return ans; } void add(int i, int x){ // add x to i while( i <= size ){ data[i] += x; i+= i&-i; } return; } }; int A[1000000]; int V[1000000]; vector<int> sameArray[1000001]; int main(){ int N; cin >> N; for( int i = 0; i<N; i++){ cin>> A[i]; V[i]=A[i]; } sort(V,V+N); int Vsize=unique(V,V+N)-V; map<int,int> unZip; for( int i = 0 ; i<Vsize; i++){ unZip[V[i]]=i+1; } long long ans = 0; { for( int i = 0 ; i < N; i++){ sameArray[unZip[A[i]]].push_back(i); } for( int i = 0 ; i <= Vsize; i++){ for( int j = 0 ; j+1 < (int)sameArray[i].size(); j++ ){ long long l=j+1; long long r = (int)sameArray[i].size()-l; ans-= l*r*(sameArray[i][j+1]-sameArray[i][j]-1); } } } BIT left(Vsize); BIT right(Vsize); for( int i = 0 ; i < N; i++){ right.add(unZip[A[i]],1); } for( int i = 0 ; i <N-1 ; i++){ right.add(unZip[A[i]],-1); ans += left.sum_(unZip[A[i]]-1)*1LL*right.sum_(unZip[A[i]]-1); ans += left.sum(unZip[A[i]],Vsize)*1LL*right.sum(unZip[A[i]],Vsize); //cout << ans << endl; left.add(unZip[A[i]],1); } cout << ans << endl; return 0; }