結果
問題 | No.568 じゃんじゃん 落とす 委員会 |
ユーザー | pekempey |
提出日時 | 2017-09-08 23:24:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,619 bytes |
コンパイル時間 | 1,127 ms |
コンパイル使用メモリ | 81,956 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-11-07 06:42:27 |
合計ジャッジ時間 | 3,676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 69 ms
5,632 KB |
testcase_01 | AC | 70 ms
5,888 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 25 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 24 ms
5,248 KB |
testcase_10 | AC | 24 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 67 ms
5,760 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 65 ms
5,632 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 24 ms
5,248 KB |
testcase_25 | AC | 24 ms
5,248 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <cstring> using namespace std; template<class T> struct FenwickTree { std::vector<T> dat; FenwickTree(int n) : dat(n + 1) {} void add(int k, T v) { for (k++; k > 0; k &= k - 1) { dat[k] += v; } } T sum(int k) { T ret = 0; for (k++; k < dat.size(); k += k & -k) { ret += dat[k]; } return ret; } }; int main() { int n, m; cin >> n >> m; vector<int> p(n); vector<int> x(n), a(n), b(n); FenwickTree<int> ft1(1e5 + 10); FenwickTree<int> ft2(1e5 + 10); int two = 0; int three = 0; for (int i = 0; i < n; i++) { p[i] = i; scanf("%d %d %d", &x[i], &a[i], &b[i]); if (x[i] == 1) { ft1.add(b[i], 1); } if (x[i] == 2) { two++; ft2.add(b[i], 1); } if (x[i] == 3) { two++; three++; } } sort(p.begin(), p.end(), [&](int i, int j) { return a[i] > a[j]; }); int ans = 1e9; int k = 0; for (int i = 100000; i >= 0; i--) { while (k < n && a[p[k]] >= i) { int ii = p[i]; x[ii]++; if (x[ii] == 3) { ft2.add(b[ii], -1); three++; } else if (x[ii] == 2) { ft2.add(b[ii], 1); ft1.add(b[ii], -1); two++; } else if (x[ii] == 1) { ft1.add(b[ii], 1); } k++; } int ok = 0; int ng = 1e5 + 5; while (ng - ok > 1) { int mid = (ok + ng) / 2; if (ft1.sum(mid) + two >= m) { ok = mid; } else { ng = mid; } } ans = min(ans, ft2.sum(ok) + three); } cout << ans << endl; }