結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー Mingda LiuMingda Liu
提出日時 2024-06-11 16:53:49
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 1,007 bytes
コンパイル時間 15,761 ms
コンパイル使用メモリ 733,488 KB
実行使用メモリ 13,112 KB
最終ジャッジ日時 2024-06-11 16:54:09
合計ジャッジ時間 13,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
13,112 KB
testcase_01 AC 82 ms
13,056 KB
testcase_02 AC 8 ms
9,088 KB
testcase_03 AC 9 ms
9,088 KB
testcase_04 AC 9 ms
8,960 KB
testcase_05 AC 8 ms
9,088 KB
testcase_06 AC 8 ms
9,088 KB
testcase_07 AC 8 ms
9,216 KB
testcase_08 AC 7 ms
9,088 KB
testcase_09 AC 8 ms
8,960 KB
testcase_10 AC 7 ms
9,216 KB
testcase_11 AC 9 ms
9,088 KB
testcase_12 AC 79 ms
12,928 KB
testcase_13 AC 64 ms
12,672 KB
testcase_14 AC 57 ms
12,800 KB
testcase_15 AC 62 ms
12,928 KB
testcase_16 AC 64 ms
12,800 KB
testcase_17 AC 60 ms
12,800 KB
testcase_18 AC 61 ms
12,800 KB
testcase_19 AC 68 ms
12,800 KB
testcase_20 AC 66 ms
12,928 KB
testcase_21 AC 61 ms
12,672 KB
testcase_22 AC 61 ms
13,056 KB
testcase_23 AC 8 ms
9,088 KB
testcase_24 AC 7 ms
9,088 KB
testcase_25 AC 7 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,j,k) for(long long i=j;i<=k;i++)
using ll= long long int;
using vi=vector<int>;
using vii=vector<vector<int>>;
using vl=vector<ll>;
using vd=vector<double>;
using vb=vector<bool>;

vi a(100005);
vi b(100005);
vii da(100005);
vii db(100005);
vi cnt(10, 0);
vi x(100005);

int main() {ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int n,m; cin >> n >> m;
	int ans = INT_MAX;
	rep(i, 1, n){
		cin >> x[i] >> a[i] >> b[i];
	}
	rep(i, 1, n){
		da[a[i]].push_back(i);
		db[b[i]].push_back(i);
		x[i] ++;
	}
	rep(i, 1, n) cnt[x[i]] ++;
	int sb = 100001;
	for(int sa = 0; sa <= 100001; sa ++){
		while(sb >= 1){
			if(cnt[2] + cnt[3] + cnt[4] + cnt[5] >= m) break;
			sb --;
			for(int c : db[sb]){
				cnt[x[c]] --;
				x[c] ++;
				cnt[x[c]] ++;
			}
		}
		if(cnt[2] + cnt[3] + cnt[4] + cnt[5] < m) break;
		ans = min(ans, cnt[3] + cnt[4] + cnt[5]);
		for(int c : da[sa]){
			cnt[x[c]] --;
			x[c] --;
			cnt[x[c]] ++;
		}
	}
	cout << ans << endl;
} 
0