結果

問題 No.59 鉄道の旅
ユーザー kurenai3110kurenai3110
提出日時 2016-08-16 10:21:17
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 511 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 66,884 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-26 07:10:13
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 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 133 ms
4,380 KB
testcase_12 AC 1,366 ms
4,376 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0