結果
問題 | No.59 鉄道の旅 |
ユーザー | srjywrdnprkt |
提出日時 | 2022-12-20 02:51:46 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 1,371 bytes |
コンパイル時間 | 1,053 ms |
コンパイル使用メモリ | 142,952 KB |
実行使用メモリ | 11,060 KB |
最終ジャッジ日時 | 2024-11-18 01:44:02 |
合計ジャッジ時間 | 1,953 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,892 KB |
testcase_01 | AC | 3 ms
10,856 KB |
testcase_02 | AC | 3 ms
10,988 KB |
testcase_03 | AC | 4 ms
10,888 KB |
testcase_04 | AC | 33 ms
11,040 KB |
testcase_05 | AC | 3 ms
11,020 KB |
testcase_06 | AC | 3 ms
10,892 KB |
testcase_07 | AC | 3 ms
11,060 KB |
testcase_08 | AC | 6 ms
11,024 KB |
testcase_09 | AC | 6 ms
10,884 KB |
testcase_10 | AC | 6 ms
10,964 KB |
testcase_11 | AC | 5 ms
11,048 KB |
testcase_12 | AC | 15 ms
10,868 KB |
testcase_13 | AC | 34 ms
10,948 KB |
testcase_14 | AC | 32 ms
10,892 KB |
testcase_15 | AC | 3 ms
10,992 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> using namespace std; //RSQ (0-indexed) template<class T> struct BIT { vector<T> bit; long long N; T P; BIT (long long n, T p = 0){ N = n; P = p; bit.resize(N); } void add(long long loc, T val){ loc++; while(loc <= N){ bit[loc-1] += val; if (P) bit[loc-1] %= P; loc += loc & -loc; } } long long sum(long long l, long long r){ T res = _sum(r) - _sum(l-1); if (P) res = (res + P) % P; return res; } long long _sum(long long r){ r++; T res = 0; while(r > 0){ res += bit[r-1]; if (P) res %= P; r -= r & -r; } return res; } }; int main(){ long long N, K, W, cnt; cin >> N >> K; BIT<long long> tree(1000001); for (int i=0; i<N; i++){ cin >> W; if (W > 0){ cnt = tree.sum(W, 1000000); if (cnt < K) tree.add(W, 1); } else{ W *= -1; if (tree.sum(W, W) > 0) tree.add(W, -1); } } cout << tree.sum(0, 1000000) << endl; return 0; }