結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー Mingda LiuMingda Liu
提出日時 2024-06-11 16:51:26
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 956 bytes
コンパイル時間 14,768 ms
コンパイル使用メモリ 733,472 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-06-11 16:51:44
合計ジャッジ時間 11,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
12,928 KB
testcase_01 AC 46 ms
13,056 KB
testcase_02 AC 6 ms
9,088 KB
testcase_03 AC 5 ms
9,088 KB
testcase_04 AC 5 ms
9,088 KB
testcase_05 AC 6 ms
9,088 KB
testcase_06 AC 5 ms
9,088 KB
testcase_07 AC 5 ms
9,120 KB
testcase_08 WA -
testcase_09 AC 5 ms
9,088 KB
testcase_10 AC 4 ms
9,088 KB
testcase_11 AC 6 ms
8,960 KB
testcase_12 AC 43 ms
12,800 KB
testcase_13 AC 44 ms
12,672 KB
testcase_14 AC 41 ms
12,800 KB
testcase_15 WA -
testcase_16 AC 42 ms
12,800 KB
testcase_17 AC 40 ms
12,800 KB
testcase_18 AC 42 ms
12,800 KB
testcase_19 AC 44 ms
12,800 KB
testcase_20 AC 41 ms
12,672 KB
testcase_21 AC 41 ms
12,672 KB
testcase_22 AC 43 ms
13,056 KB
testcase_23 AC 6 ms
9,088 KB
testcase_24 AC 6 ms
9,088 KB
testcase_25 AC 6 ms
9,088 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]] ++;
			}
		}
		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