結果
問題 | No.1526 Sum of Mex 2 |
ユーザー | hitonanode |
提出日時 | 2021-06-03 00:54:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 67 ms / 3,000 ms |
コード長 | 1,442 bytes |
コンパイル時間 | 1,029 ms |
コンパイル使用メモリ | 100,364 KB |
実行使用メモリ | 13,788 KB |
最終ジャッジ日時 | 2024-11-15 20:34:42 |
合計ジャッジ時間 | 2,872 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 5 ms
6,816 KB |
testcase_14 | AC | 6 ms
6,816 KB |
testcase_15 | AC | 6 ms
6,816 KB |
testcase_16 | AC | 24 ms
13,412 KB |
testcase_17 | AC | 17 ms
11,804 KB |
testcase_18 | AC | 4 ms
6,816 KB |
testcase_19 | AC | 4 ms
6,816 KB |
testcase_20 | AC | 12 ms
8,064 KB |
testcase_21 | AC | 24 ms
13,180 KB |
testcase_22 | AC | 14 ms
8,832 KB |
testcase_23 | AC | 24 ms
13,300 KB |
testcase_24 | AC | 25 ms
13,524 KB |
testcase_25 | AC | 23 ms
13,160 KB |
testcase_26 | AC | 25 ms
13,344 KB |
testcase_27 | AC | 27 ms
13,520 KB |
testcase_28 | AC | 28 ms
13,788 KB |
testcase_29 | AC | 25 ms
13,556 KB |
testcase_30 | AC | 26 ms
13,712 KB |
testcase_31 | AC | 26 ms
13,708 KB |
testcase_32 | AC | 25 ms
13,188 KB |
testcase_33 | AC | 67 ms
13,048 KB |
evil_largest | AC | 210 ms
37,268 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; #include <atcoder/lazysegtree> using ull = unsigned long long; struct S { ull sum; unsigned max, size; S() = default; }; S op(S l, S r) noexcept { return {l.sum + r.sum, l.max > r.max ? l.max : r.max, l.size + r.size}; } S e() noexcept { return {0, 0, 0}; } S mapping(unsigned f, S x) noexcept { return f ? S{(unsigned long long)x.size * f, x.size ? f : 0, x.size} : x; } unsigned composition(unsigned f, unsigned g) noexcept { return f ? f : g; } unsigned id() noexcept { return 0; } int main() { ios::sync_with_stdio(false), cin.tie(nullptr); unsigned N; cin >> N; vector<vector<unsigned>> v2is(N); for (unsigned i = 0; i < N; i++) { unsigned a; cin >> a; v2is[a - 1].push_back(i); } long long ret = 0; vector<S> init(N); for (int i = 0; i < N; i++) init[i] = {(unsigned)i, (unsigned)i, 1}; atcoder::lazy_segtree<S, op, e, unsigned, mapping, composition, id> tree(init); for (int h = 0; h < N; h++) { int l = 0; for (auto i : v2is[h]) { int r = tree.max_right(l, [&](S x) { return x.max <= i; }); if (l < r) tree.apply(l, r, i); l = i + 1; } tree.apply(l, N, N); auto tmp = (long long)N * N - tree.all_prod().sum; ret += tmp; if (!tmp) break; } cout << ret + (long long)N * (N + 1) / 2 << '\n'; }