結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー antaanta
提出日時 2017-09-08 22:46:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 1,000 ms
コード長 1,400 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 172,388 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-11-30 10:40:57
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,364 KB
testcase_01 AC 73 ms
12,416 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 6 ms
8,064 KB
testcase_04 AC 7 ms
8,064 KB
testcase_05 AC 6 ms
8,064 KB
testcase_06 AC 7 ms
8,064 KB
testcase_07 AC 6 ms
8,192 KB
testcase_08 AC 6 ms
8,064 KB
testcase_09 AC 6 ms
8,064 KB
testcase_10 AC 6 ms
8,064 KB
testcase_11 AC 6 ms
8,192 KB
testcase_12 AC 68 ms
12,160 KB
testcase_13 AC 66 ms
12,160 KB
testcase_14 AC 69 ms
12,160 KB
testcase_15 AC 70 ms
12,200 KB
testcase_16 AC 67 ms
12,032 KB
testcase_17 AC 65 ms
12,160 KB
testcase_18 AC 65 ms
12,160 KB
testcase_19 AC 70 ms
12,160 KB
testcase_20 AC 65 ms
12,032 KB
testcase_21 AC 67 ms
12,032 KB
testcase_22 AC 68 ms
12,544 KB
testcase_23 AC 7 ms
8,064 KB
testcase_24 AC 7 ms
8,064 KB
testcase_25 AC 6 ms
8,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i))
#define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i))
static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL;
typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll;
template<typename T, typename U> static void amin(T &x, U y) { if (y < x) x = y; }
template<typename T, typename U> static void amax(T &x, U y) { if (x < y) x = y; }

int main() {
	int N; int M;
	while (~scanf("%d%d", &N, &M)) {
		const int S = 100002;
		vector<vi> eventA(S), eventB(S);
		vector<int> Xs(N, 0);
		array<int, 6> cnt = { {} };
		rep(i, N) {
			int X; int A; int B;
			scanf("%d%d%d", &X, &A, &B);
			++ X;
			Xs[i] = X;
			eventA[A + 1].push_back(i);
			eventB[B].push_back(i);
			++ cnt[X];
		}
		int b = S - 1;
		int ans = INF;
		for (int a = 0; a < S; ++ a) {
			for (int i : eventA[a]) {
				int x = Xs[i] --;
				-- cnt[x], ++ cnt[x - 1];
			}
			for (; b >= 0; -- b) {
				if (cnt[2] + cnt[3] + cnt[4] + cnt[5] >= M)
					break;
				for (int i : eventB[b]) {
					int x = Xs[i] ++;
					-- cnt[x], ++ cnt[x + 1];
				}
			}
			if (cnt[2] + cnt[3] + cnt[4] + cnt[5] >= M) {
				amin(ans, cnt[3] + cnt[4] + cnt[5]);
			}
		}
		printf("%d\n", ans);
	}
	return 0;
}
0