結果
問題 | No.1496 不思議な数え上げ |
ユーザー | penguinman |
提出日時 | 2021-04-11 05:25:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,684 bytes |
コンパイル時間 | 2,290 ms |
コンパイル使用メモリ | 210,036 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-07-16 03:42:40 |
合計ジャッジ時間 | 9,318 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 192 ms
17,152 KB |
testcase_04 | AC | 190 ms
17,280 KB |
testcase_05 | AC | 192 ms
17,280 KB |
testcase_06 | AC | 174 ms
17,280 KB |
testcase_07 | AC | 172 ms
17,280 KB |
testcase_08 | AC | 174 ms
17,280 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
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> #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") 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(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); std::cout.tie(nullptr); ll N; cin >> N; vector<ll> P(N); rep(i,0,N) cin >> P[i]; 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] を満たす必要がある if(rev[i] < l) break; 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]); } }