結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー square1001square1001
提出日時 2017-08-17 20:23:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 744 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 49,536 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-11-30 10:41:05
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,928 KB
testcase_01 AC 70 ms
13,056 KB
testcase_02 AC 6 ms
7,808 KB
testcase_03 AC 5 ms
7,808 KB
testcase_04 AC 5 ms
7,936 KB
testcase_05 AC 6 ms
7,808 KB
testcase_06 AC 5 ms
7,936 KB
testcase_07 AC 5 ms
7,808 KB
testcase_08 AC 6 ms
7,936 KB
testcase_09 AC 5 ms
7,936 KB
testcase_10 AC 5 ms
7,808 KB
testcase_11 AC 6 ms
7,936 KB
testcase_12 AC 69 ms
12,800 KB
testcase_13 AC 75 ms
12,800 KB
testcase_14 AC 69 ms
12,800 KB
testcase_15 AC 74 ms
12,672 KB
testcase_16 AC 70 ms
12,544 KB
testcase_17 AC 67 ms
12,672 KB
testcase_18 AC 68 ms
12,672 KB
testcase_19 AC 68 ms
12,672 KB
testcase_20 AC 65 ms
12,672 KB
testcase_21 AC 68 ms
12,672 KB
testcase_22 AC 72 ms
13,056 KB
testcase_23 AC 5 ms
7,936 KB
testcase_24 AC 5 ms
7,808 KB
testcase_25 AC 4 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <vector>
#pragma warning(disable : 4996)
using namespace std;
int N, M, c2, c3, x[200009], a[200009], b[200009]; vector<int> ga[100009], gb[100009];
int main() {
	scanf("%d %d", &N, &M);
	for (int i = 0; i < N; i++) {
		scanf("%d %d %d", &x[i], &a[i], &b[i]); x[i]++;
		ga[a[i]].push_back(i);
		gb[b[i]].push_back(i);
		if (x[i] >= 2) c2++;
		if (x[i] >= 3) c3++;
	}
	int ret = N, r = 100001;
	for (int i = 0; i <= 100000; i++) {
		for (int j : ga[i]) {
			if (x[j] == 3) c3--;
			if (x[j] == 2) c2--;
			x[j]--;
		}
		while (c2 < M && --r >= 0) {
			for (int j : gb[r]) {
				x[j]++;
				if (x[j] == 3) c3++;
				if (x[j] == 2) c2++;
			}
		}
		if(c2 >= M && ret > c3) ret = c3;
	}
	printf("%d\n", ret);
	return 0;
}
0