結果

問題 No.1341 真ん中を入れ替えて門松列
ユーザー leaf_1415leaf_1415
提出日時 2021-01-16 00:25:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,802 bytes
コンパイル時間 1,109 ms
コンパイル使用メモリ 104,572 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 02:16:24
合計ジャッジ時間 19,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
5,376 KB
testcase_07 AC 1,582 ms
5,376 KB
testcase_08 AC 870 ms
5,376 KB
testcase_09 AC 949 ms
5,376 KB
testcase_10 AC 1,749 ms
5,376 KB
testcase_11 TLE -
testcase_12 AC 1,622 ms
5,376 KB
testcase_13 AC 1,500 ms
5,376 KB
testcase_14 AC 1,910 ms
5,376 KB
testcase_15 AC 1,900 ms
5,376 KB
testcase_16 AC 1,323 ms
5,376 KB
testcase_17 AC 1,344 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18

using namespace std;

typedef long long llint;
typedef long long ll;
typedef pair<int, int> P;

ll n, m;
int l[3005], r[3005], a[3005];
priority_queue<P> Q, Q2;
priority_queue<P, vector<P>, greater<P> > Q3;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> m;
	rep(i, 1, n){
		cin >> l[i] >> a[i] >> r[i];
		if(l[i] > r[i]) swap(l[i], r[i]);
	}
	sort(a+1, a+n+1);
	
	ll ans = -inf;
	rep(i, 0, n){
		
		int cnt = 0;
		while(Q.size()) Q.pop();
		while(Q2.size()) Q2.pop();
		while(Q3.size()) Q3.pop();
		
		rep(j, 1, n) Q.push(P(l[j], r[j]));
		
		ll sum = 0;
		for(int j = i; j >= 1; j--){
			while(Q.size() && Q.top().first > a[j]){
				Q2.push(P(Q.top().second, Q.top().first));
				Q.pop();
			}
			if(Q2.size() == 0) goto end;
			
			sum += Q2.top().first;
			Q2.pop();
		}
		
		while(Q.size()) Q3.push(P(Q.top().second, Q.top().first)), Q.pop();
		while(Q2.size()) Q3.push(Q2.top()), Q2.pop();
		
		for(int j = i+1; j <= n; j++){
			while(Q3.size() && Q3.top().first < a[j]) cnt++, Q3.pop();
			if(cnt == 0) goto end;
			sum += a[j];
			cnt--;
		}
		chmax(ans, sum);
		if(ans >= m) break;
		end:;
	}
	
	if(ans < 0) cout << "NO" << endl;
	else{
		cout << "YES" << endl;
		if(ans >= m) cout << "KADOMATSU!" << endl;
		else cout << "NO" << endl;
	}
	
	return 0;
}
0