結果
問題 | No.59 鉄道の旅 |
ユーザー | kurenai3110 |
提出日時 | 2016-08-16 10:21:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 511 bytes |
コンパイル時間 | 765 ms |
コンパイル使用メモリ | 67,036 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 02:21:06 |
合計ジャッジ時間 | 4,499 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 146 ms
5,376 KB |
testcase_12 | AC | 1,518 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <set> #include <algorithm> using namespace std; int A[100001]; int main() { int n, k; int cnt = 0; multiset<int> b; cin >> n >> k; for (int i = 0; i < n; i++) { int a; cin >> a; if (a > 0) { auto d = lower_bound(b.begin(), b.end(), a); if (distance(d, b.end()) < k) { A[a]++; cnt++; b.insert(a); } } else if (a < 0 && A[-a] >= 1) { A[-a]--; cnt--; b.erase(b.find(-a)); } } cout << cnt << endl; return 0; }