結果
問題 | No.1341 真ん中を入れ替えて門松列 |
ユーザー | leaf_1415 |
提出日時 | 2021-01-16 00:32:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,794 bytes |
コンパイル時間 | 835 ms |
コンパイル使用メモリ | 94,600 KB |
実行使用メモリ | 818,040 KB |
最終ジャッジ日時 | 2024-05-05 02:17:33 |
合計ジャッジ時間 | 6,395 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#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]; vector<P> vec; 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]); vec.push_back(P(l[i], r[i])); } sort(a+1, a+n+1); sort(all(vec)); reverse(all(vec)); ll ans = -inf; rep(i, 0, n){ int cnt = 0; while(Q2.size()) Q2.pop(); while(Q3.size()) Q3.pop(); ll sum = 0, pos = 0; for(int j = i; j >= 1; j--){ while(pos < n && vec[pos].first > a[j]) Q2.push(P(vec[pos].second, vec[pos].first)); if(Q2.size() == 0) goto end; sum += Q2.top().first; Q2.pop(); } while(pos < n) Q3.push(P(vec[pos].second, vec[pos].first)); 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; }