結果
問題 | No.1079 まお |
ユーザー | chocorusk |
提出日時 | 2020-06-14 19:49:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,376 bytes |
コンパイル時間 | 1,593 ms |
コンパイル使用メモリ | 143,620 KB |
実行使用メモリ | 14,848 KB |
最終ジャッジ日時 | 2024-06-27 20:04:56 |
合計ジャッジ時間 | 9,355 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
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 | AC | 98 ms
5,708 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
コンパイルメッセージ
main.cpp: In function 'void solve(int, int)': main.cpp:38:16: warning: overflow in conversion from 'll' {aka 'long long int'} to 'int' changes value from '1000000000000000000' to '-1486618624' [-Woverflow] 38 | int mn=INF, cnt=0; | ^~~ main.cpp:50:12: warning: overflow in conversion from 'll' {aka 'long long int'} to 'int' changes value from '1000000000000000000' to '-1486618624' [-Woverflow] 50 | mn=INF, cnt=0; | ^~~ main.cpp:69:8: warning: overflow in conversion from 'll' {aka 'long long int'} to 'int' changes value from '1000000000000000000' to '-1486618624' [-Woverflow] 69 | mn=INF, cnt=0; | ^~~ main.cpp:80:12: warning: overflow in conversion from 'll' {aka 'long long int'} to 'int' changes value from '1000000000000000000' to '-1486618624' [-Woverflow] 80 | mn=INF, cnt=0; | ^~~
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, ll> P; int n, k; int a[100010]; ll ans; const ll INF=1e18; void solve(int l, int r){ if(l==r){ if(a[l]+a[r]==k) ans++; return; } int m=(l+r)/2; int mn=INF, cnt=0; map<int, vector<P>> mp; for(int i=m; i>=l; i--){ if(mn>a[i]){ mn=a[i]; } mp[a[i]].push_back({mn, m+1-i}); } for(auto &p:mp){ sort(p.second.begin(), p.second.end()); for(int i=1; i<p.second.size(); i++) p.second[i].second+=p.second[i-1].second; } mn=INF, cnt=0; for(int i=m+1; i<=r; i++){ if(mn>a[i]){ mn=a[i], cnt=1; }else if(mn==a[i]){ cnt++; } if(cnt==1){ auto itr=mp.find(k-a[i]); if(itr!=mp.end()){ auto v=itr->second; int t=upper_bound(v.begin(), v.end(), P(mn, INF))-v.begin(); ans+=((ll)v.size()-t)*(i-m); if(t>0) ans+=v.back().second-v[t-1].second; else ans+=v.back().second; } } } mp.clear(); mn=INF, cnt=0; for(int i=m+1; i<=r; i++){ if(mn>a[i]){ mn=a[i]; } mp[a[i]].push_back({mn, i-m}); } for(auto &p:mp){ sort(p.second.begin(), p.second.end()); for(int i=1; i<p.second.size(); i++) p.second[i].second+=p.second[i-1].second; } mn=INF, cnt=0; for(int i=m; i>=l; i--){ if(mn>a[i]){ mn=a[i], cnt=1; }else if(mn==a[i]){ cnt++; } if(cnt==1){ auto itr=mp.find(k-a[i]); if(itr!=mp.end()){ auto v=itr->second; int t=upper_bound(v.begin(), v.end(), P(mn, INF))-v.begin(); ans+=((ll)v.size()-t)*(m+1-i); if(t>0) ans+=v.back().second-v[t-1].second; else ans+=v.back().second; } } } solve(l, m); solve(m+1, r); } int main() { cin>>n>>k; for(int i=0; i<n; i++){ cin>>a[i]; } solve(0, n-1); cout<<ans<<endl; return 0; }