結果
問題 | No.1496 不思議な数え上げ |
ユーザー | penguinman |
提出日時 | 2021-04-28 04:02:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,547 bytes |
コンパイル時間 | 2,163 ms |
コンパイル使用メモリ | 211,016 KB |
実行使用メモリ | 17,408 KB |
最終ジャッジ日時 | 2024-07-16 03:47:12 |
合計ジャッジ時間 | 14,067 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 576 ms
17,280 KB |
testcase_04 | AC | 591 ms
17,408 KB |
testcase_05 | AC | 586 ms
17,408 KB |
testcase_06 | AC | 575 ms
17,280 KB |
testcase_07 | AC | 567 ms
17,408 KB |
testcase_08 | AC | 568 ms
17,408 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 573 ms
17,408 KB |
testcase_13 | AC | 582 ms
17,280 KB |
testcase_14 | AC | 577 ms
17,408 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
#include<bits/stdc++.h> using std::cin; using std::cout; using std::endl; using std::vector; using ll = long long; #define rep(i,j,k) for(int i=int(j); i<int(k); i++) #define REP(i,j,k) for(int i=int(j); i<=int(k); i++) int main(){ ll N; cin >> N; vector<ll> P(N); rep(i,0,N) cin >> P[i]; bool flag = false; rep(i,0,N) if(P[i] != i+1) flag = true; assert(flag); vector<ll> sum(N+1), rev(N); rep(i,0,N){ sum[i+1] = sum[i]+P[i]; rev[--P[i]] = i; } std::set<ll> set; set.insert(-1); set.insert(N); rep(i,0,N){ ll A; cin >> A; auto itr = set.lower_bound(rev[i]); ll right = *itr; itr--; ll left = *itr; ll ans = 0; if(true){ rep(r,rev[i],right){ //右端固定 ll l = std::lower_bound(sum.begin(),sum.end(),sum[r+1]-A)-sum.begin(); //left < l ≤ rev[i] を満たす必要がある l = std::max(l, left+1); l = std::min(l, rev[i]+1); ans += rev[i]-l+1; } } else{ REP(l,left+1,rev[i]){ //左端固定 ll r = std::upper_bound(sum.begin(),sum.end(),sum[l]+A)-sum.begin()-2; //rev[i] ≤ r < right を満たす必要がある r = std::min(r, right-1); r = std::max(r, rev[i]-1); ans += r-rev[i]+1; } } cout << ans << "\n"; set.insert(rev[i]); } }