結果
問題 | No.1079 まお |
ユーザー | Chanyuh |
提出日時 | 2020-07-22 12:48:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,724 bytes |
コンパイル時間 | 839 ms |
コンパイル使用メモリ | 114,412 KB |
実行使用メモリ | 53,760 KB |
最終ジャッジ日時 | 2024-06-11 16:21:25 |
合計ジャッジ時間 | 17,657 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include<iostream> #include<string> #include<cstdio> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<ciso646> #include<random> #include<map> #include<set> #include<complex> #include<bitset> #include<stack> #include<unordered_map> #include<utility> #include<tuple> using namespace std; typedef long long ll; typedef unsigned int ui; const ll mod = 1000000007; const ll INF = (ll)1000000007 * 1000000007; typedef pair<int, int> P; #define stop char nyaa;cin>>nyaa; #define rep(i,n) for(int i=0;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define Per(i,sta,n) for(int i=n-1;i>=sta;i--) #define rep1(i,n) for(int i=1;i<=n;i++) #define per1(i,n) for(int i=n;i>=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) typedef long double ld; const ld eps = 1e-8; const ld pi = acos(-1.0); typedef pair<ll, ll> LP; typedef pair<P, ll> PP; int dx[4]={1,-1,0,0}; int dy[4]={0,0,1,-1}; int n,k; int a[100010]; ll rec(int l,int r){ if(r-l<=0) return 0; if(r-l==1){ if(2*a[l]==k) return 1; else return 0; } map<int,ll> ma1,ma2; map<int,ll> ma3,ma4; int mid=(l+r)/2; ll res=0; P pl=P(mod,0); int pos_r=mid,min_r=mod; Per(i,l,mid){ int mi=pl.first,cnt=pl.second; if(a[i]<mi){ mi=a[i]; cnt=1; } else if(a[i]==mi) cnt+=1; while(pos_r<r && mi<min(min_r,a[pos_r])){ min_r=min(min_r,a[pos_r]); ma1[a[pos_r]]+=pos_r-mid+1; ma2[a[pos_r]]+=1; pos_r+=1; } // if(mid==3){ // //cout << i << " " << mi << " " << cnt << endl; // cout << pos_r << endl; // } if(cnt==1)res+=ma1[k-a[i]]+(ll)(mid-i)*ma2[k-a[i]]; pl=P(mi,cnt); } P pr=P(mod,0); int pos_l=mid,min_l=mod; Rep(i,mid,r){ int mi=pr.first,cnt=pr.second; if(a[i]<mi){ mi=a[i]; cnt=1; } else if(a[i]==mi) cnt+=1; while(pos_l>=l+1 && mi<min(min_l,a[pos_l-1])){ pos_l-=1; min_l=min(min_l,a[pos_l]); ma3[a[pos_l]]+=mid-pos_l; ma4[a[pos_l]]+=1; } // if(mid==3){ // //cout << i << " " << mi << " " << cnt << endl; // cout << pos_l << endl; // } if(cnt==1)res+=ma3[k-a[i]]+(ll)(i-mid+1)*ma4[k-a[i]]; pr=P(mi,cnt); } //cout << l << " " << r << endl; //cout << mid << endl; //cout << res << endl; if(mid==3) cout << res << endl; return res+rec(l,mid)+rec(mid,r); } void solve(){ cin >> n >> k; a[0]=-mod; rep(i,n){ cin >> a[i+1]; } // n=100000; // k=100001; // rep(i,n){ // a[i+1]=n-i; // } cout << rec(0,n+1) << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(50); solve(); }