結果
問題 | No.2374 ASKT Subsequences |
ユーザー | momoyuu |
提出日時 | 2023-07-08 00:56:48 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,519 bytes |
コンパイル時間 | 1,242 ms |
コンパイル使用メモリ | 112,212 KB |
実行使用メモリ | 66,176 KB |
最終ジャッジ日時 | 2024-07-21 21:16:48 |
合計ジャッジ時間 | 2,922 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,376 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 35 ms
18,944 KB |
testcase_26 | WA | - |
testcase_27 | AC | 147 ms
66,048 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include<iostream> #include<vector> #include<string> #include<algorithm> #include<set> #include<queue> using namespace std; using ll = long long; template< typename T > struct BIT2D{ int H,W; vector<vector<T>> data; BIT2D(int h,int w):H(h),W(w),data(h+1,vector<T>(w+1,0)){} void add(int h,int w,T x){ h++;w++; for(int i = h;i<=H;i+=i&(-i)){ for(int j = w;j<=W;j+=j&(-j)){ data[i][j] += x; } } } //sum of [l,r) T sum(int h1,int w1,int h2,int w2){ return sum(h2,w2)-sum(h2,w1-1)-sum(h1-1,w2)+sum(h1-1,w1-1); } T sum(int h,int w){ h++;w++; T now = 0; for(int i = h;i>0;i-=i&(-i)){ for(int j = w;j>0;j-=j&(-j)){ now += data[i][j]; } } return now; } }; int main(){ int n; cin>>n; vector<int> a(n); for(int i = 0;i<n;i++) cin>>a[i]; ll ans = 0; BIT2D<ll> b1(n+2,n+2),b2(n+2,n+2); for(int i = 0;i<n;i++) for(int j = i+1;j<n;j++){ if(a[j]==a[i]+10) { b1.add(i,j,1); } if(a[j]==a[i]+1){ b2.add(i,j,1); } } for(int i = 0;i<n;i++) for(int j = i+2;j<n;j++){ if(a[j]==a[i]+10) { ans += b2.sum(i+1,j+1,j,n); // cout<<i<<" "<<j<<" "<<ans<<endl; } if(a[j]==a[i]+1){ ans += b1.sum(i+1,j+1,j,n); // cout<<i<<" "<<j<<" "<<ans<<endl; } } cout <<ans<<endl; }