結果
問題 | No.618 labo-index |
ユーザー | merom686 |
提出日時 | 2017-12-18 01:14:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,634 bytes |
コンパイル時間 | 909 ms |
コンパイル使用メモリ | 83,692 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-09 11:11:17 |
合計ジャッジ時間 | 8,664 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,448 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
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 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; struct BIT { BIT(int n) : s(n + 1), n(n) {} int sum(int k) { int r = 0; for (; k > 0; k -= k & -k) r += s[k]; return r; } void add(int i, int v) { for (int k = i + 1; k <= n; k += k & -k) s[k] += v; } vector<int> s; int n; }; using I = int; template <class F> I lower_bound(I i0, I i1, F f) { while (i0 < i1) { I i = (i0 + i1) / 2; if (f(i)) i1 = i; else i0 = i + 1; } return i0; } int main() { ios::sync_with_stdio(false); cin.tie(0); int q; cin >> q; vector<int> t(q), x(q); for (int i = 0; i < q; i++) { cin >> t[i] >> x[i]; if (t[i] == 2) x[i]--; } vector<pair<int64_t, int>> a; int64_t d = 0; for (int i = 0; i < q; i++) { if (t[i] == 1) a.push_back(pair<int64_t, int>(x[i] - d, i)); if (t[i] == 3) d += x[i]; } sort(a.begin(), a.end()); vector<int> p(q, -1); int n = a.size(); for (int j = 0; j < n; j++) { p[a[j].second] = j; } BIT bt(n); d = 0; int m = 0; for (int i = 0; i < q; i++) { if (t[i] == 1) { bt.add(p[i], 1); m++; } else if (t[i] == 2) { bt.add(p[x[i]], -1); m--; } else { d += x[i]; } I j = lower_bound(0, n, [&](I j) { return m - bt.sum(j) <= a[j].first + d; }); cout << m - bt.sum(j) << '\n'; } return 0; }