結果

問題 No.1341 真ん中を入れ替えて門松列
ユーザー 沙耶花沙耶花
提出日時 2021-01-15 23:06:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 895 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 2,585 ms
コンパイル使用メモリ 216,484 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 01:01:59
合計ジャッジ時間 11,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 583 ms
5,376 KB
testcase_08 AC 483 ms
5,376 KB
testcase_09 AC 505 ms
5,376 KB
testcase_10 AC 757 ms
5,376 KB
testcase_11 AC 757 ms
5,376 KB
testcase_12 AC 689 ms
5,376 KB
testcase_13 AC 801 ms
5,376 KB
testcase_14 AC 895 ms
5,376 KB
testcase_15 AC 810 ms
5,376 KB
testcase_16 AC 806 ms
5,376 KB
testcase_17 AC 818 ms
5,376 KB
testcase_18 AC 474 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000



int main(){
	
	int N;
	cin>>N;
	long long M;
	cin>>M;
	
	vector<long long> B(N);
	vector<pair<long long,long long>> CA(N);
	rep(i,N){
		long long a,b,c;
		scanf("%lld %lld %lld",&a,&b,&c);
		B[i] = b;
		if(a>c)swap(c,a);
		CA[i] = make_pair(c,a);
	}
	sort(B.begin(),B.end());
	sort(CA.begin(),CA.end());
	long long ans= -1;
	
	rep(i,N+1){
		multiset<long long> S;
		long long cur = 0LL;
		rep(j,N){
			if(j<i){
				S.insert(B[j]);
			}
			else{
				cur += B[j];
			}
		}
		vector<long long> t;
		for(int j=N-1;j>=0;j--){
			auto it = S.lower_bound(CA[j].second);
			if(it==S.begin()){
				t.push_back(CA[j].first);
			}
			else{
				it--;
				cur += CA[j].first;
				S.erase(it);
			}
		}
		reverse(t.begin(),t.end());
		if(S.size()==0){
			bool f = true;
			for(int j=0;j<t.size();j++){
				if(B[i+j]>t[j])continue;
				f=false;
				break;
			}
			if(f)ans = max(ans,cur);
		}
	}

	if(ans==-1){
		cout<<"NO"<<endl;
	}
	else{
		cout<<"YES"<<endl;
		if(M<=ans)cout<<"KADOMATSU!"<<endl;
		else cout<<"NO"<<endl;
	}
	
    return 0;
}
0