結果
問題 | No.1079 まお |
ユーザー | 0w1 |
提出日時 | 2020-07-12 18:52:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,210 bytes |
コンパイル時間 | 2,347 ms |
コンパイル使用メモリ | 219,508 KB |
実行使用メモリ | 25,472 KB |
最終ジャッジ日時 | 2024-10-15 19:47:09 |
合計ジャッジ時間 | 9,668 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 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 | AC | 142 ms
12,672 KB |
testcase_13 | AC | 111 ms
10,240 KB |
testcase_14 | AC | 241 ms
17,236 KB |
testcase_15 | AC | 207 ms
15,012 KB |
testcase_16 | AC | 202 ms
13,952 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 337 ms
20,352 KB |
testcase_23 | AC | 330 ms
19,840 KB |
testcase_24 | AC | 365 ms
22,144 KB |
testcase_25 | AC | 426 ms
24,704 KB |
testcase_26 | AC | 476 ms
25,472 KB |
testcase_27 | AC | 40 ms
6,816 KB |
testcase_28 | AC | 106 ms
14,592 KB |
testcase_29 | AC | 139 ms
14,592 KB |
testcase_30 | AC | 141 ms
14,592 KB |
testcase_31 | AC | 49 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { /* ios::sync_with_stdio(false); */ int N, K; cin >> N >> K; vector<int> A(N); for (int i = 0; i < N; ++i) cin >> A[i]; function<int64_t(int, int)> dvcq = [&](int l, int r) { if (r - l < 1) return (int64_t) 0; int64_t res = 0; map<int, int> cnt; for (int i = l; i < r; ++i) ++cnt[A[i]]; if (cnt.begin()->second < 2) { map<int, int64_t> sum; for (int i = l; i < r; ++i) sum[A[i]] += i + 1; for (int i = l; i < r; ++i) { if (A[i] <= K) res += sum[K - A[i]] - (int64_t) i * cnt[K - A[i]]; --cnt[A[i]]; sum[A[i]] -= i + 1; } } else { int i = l; int j = i; while (j < r && A[j] != cnt.begin()->first) ++j; for (++j; j < r && A[j] != cnt.begin()->first; ++j) ; res += dvcq(i, j); while (true) { while (i < r && A[i] != cnt.begin()->first) ++i; if (++i >= r) break; res -= dvcq(i, j); for (++j; j < r && A[j] != cnt.begin()->first; ++j) ; if (j > r) j = r; res += dvcq(i, j); if (j == r) break; } } return res; }; cout << dvcq(0, N) << endl; return 0; }