結果
問題 | No.1435 Mmm...... |
ユーザー | uzzy |
提出日時 | 2021-03-19 23:33:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 675 ms / 2,000 ms |
コード長 | 1,948 bytes |
コンパイル時間 | 2,174 ms |
コンパイル使用メモリ | 187,616 KB |
実行使用メモリ | 8,196 KB |
最終ジャッジ日時 | 2024-11-19 02:12:45 |
合計ジャッジ時間 | 13,325 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
7,388 KB |
testcase_01 | AC | 3 ms
6,820 KB |
testcase_02 | AC | 3 ms
7,644 KB |
testcase_03 | AC | 4 ms
6,816 KB |
testcase_04 | AC | 3 ms
7,772 KB |
testcase_05 | AC | 3 ms
7,000 KB |
testcase_06 | AC | 341 ms
7,596 KB |
testcase_07 | AC | 419 ms
7,904 KB |
testcase_08 | AC | 493 ms
8,160 KB |
testcase_09 | AC | 453 ms
8,032 KB |
testcase_10 | AC | 385 ms
7,812 KB |
testcase_11 | AC | 383 ms
8,032 KB |
testcase_12 | AC | 356 ms
7,776 KB |
testcase_13 | AC | 344 ms
7,904 KB |
testcase_14 | AC | 243 ms
7,396 KB |
testcase_15 | AC | 531 ms
7,988 KB |
testcase_16 | AC | 426 ms
8,032 KB |
testcase_17 | AC | 287 ms
7,576 KB |
testcase_18 | AC | 534 ms
8,160 KB |
testcase_19 | AC | 376 ms
8,032 KB |
testcase_20 | AC | 481 ms
8,072 KB |
testcase_21 | AC | 675 ms
8,052 KB |
testcase_22 | AC | 646 ms
8,160 KB |
testcase_23 | AC | 542 ms
8,164 KB |
testcase_24 | AC | 540 ms
8,036 KB |
testcase_25 | AC | 547 ms
8,196 KB |
testcase_26 | AC | 549 ms
8,032 KB |
testcase_27 | AC | 541 ms
8,160 KB |
ソースコード
#pragma GCC optimize ("O2") #pragma GCC target ("avx2") #include<bits/stdc++.h> //#include<atcoder/all> //using namespace atcoder; using namespace std; typedef long long ll; #define rep(i, n) for(int i = 0; i < (n); i++) #define rep1(i, n) for(int i = 1; i <= (n); i++) #define co(x) cout << (x) << "\n" #define cosp(x) cout << (x) << " " #define ce(x) cerr << (x) << "\n" #define cesp(x) cerr << (x) << " " #define pb push_back #define mp make_pair #define chmin(x, y) x = min(x, y) #define chmax(x, y) x = max(x, y) #define Would #define you #define please const int AS = 200200; pair<int, int> DAT[2 * AS]; int dat[2 * AS]; pair<int, int> keisan(pair<int, int> A, pair<int, int> B) { if (A > B) swap(A, B); if (A.second > B.first) swap(A.second, B.first); return A; } void modify(int p, int value) { for (DAT[p += AS] = { value, 2e9 }; p > 1; p >>= 1) { auto tmp = keisan(DAT[p], DAT[p ^ 1]); DAT[p >> 1] = tmp; } } pair<int, int> query(int l, int r) { pair<int, int> ret = { 2e9,2e9 }; for (l += AS, r += AS; l < r; l >>= 1, r >>= 1) { if (l & 1) ret = keisan(ret, DAT[l++]); if (r & 1) ret = keisan(ret, DAT[--r]); } return ret; } void modify2(int p, int value) { for (dat[p += AS] = value; p > 1; p >>= 1) dat[p >> 1] = max(dat[p], dat[p ^ 1]); } int query2(int l, int r) { int ret = 0; for (l += AS, r += AS; l < r; l >>= 1, r >>= 1) { if (l & 1) chmax(ret, dat[l++]); if (r & 1) chmax(ret, dat[--r]); } return ret; } int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; rep(i, 2 * AS) { DAT[i] = { 2e9,2e9 }; } rep(i, N) { int a; cin >> a; modify(i, a); modify2(i, a); } ll kotae = 0; rep(i, N - 1) { int L = i + 1, R = N; while (L + 1 < R) { int wj = (L + R) / 2; auto p = query(i, wj + 1); ll dore = ll(query2(i, wj + 1)) - p.first - p.second; if (dore <= 0) L = wj; else R = wj; } kotae += L - i; } co(kotae); Would you please return 0; }