結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | roiti46 |
提出日時 | 2015-12-17 00:30:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,571 bytes |
コンパイル時間 | 2,125 ms |
コンパイル使用メモリ | 181,872 KB |
実行使用メモリ | 817,956 KB |
最終ジャッジ日時 | 2024-09-16 06:38:47 |
合計ジャッジ時間 | 4,934 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | MLE | - |
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 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, a) REP(i, 0, a) #define EACH(i, a) for (auto i: a) #define ITR(x, a) for (__typeof(a.begin()) x = a.begin(); x != a.end(); x++) #define ALL(a) (a.begin()), (a.end()) #define HAS(a, x) (a.find(x) != a.end()) #define endl '\n' int n, m; int w[3005]; int main(void) { cin >> n >> m; rep(i, n) cin >> w[i]; int rem = n; int cur = 0; rep(i, n) cur += w[i]; queue<pair<int, vector<bool>>> que; que.push(make_pair(cur, vector<bool>(n, false))); while (rem-- > m) { queue<pair<int, vector<bool>>> nque; while (que.size()) { auto ele = que.front(); que.pop(); int cur = ele.first; auto removed = ele.second; vector<int> pos; int decrease = 1e8; rep(i, n) { if (removed[i]) continue; int l = (i - 1 + n) % n, r = (i + 1) % n; int tmp = 0; if (!removed[l]) tmp += w[l]; if (!removed[r]) tmp += w[i]; if (tmp < decrease) { pos.clear(); pos.push_back(i); decrease = tmp; } else if (tmp == decrease) { pos.push_back(i); } } for (auto i: pos) { auto nremoved = removed; nremoved[i] = true; nque.push(make_pair(cur - decrease, nremoved)); } } que = nque; } int ans = -1e8; while (que.size()){ auto ele = que.front(); que.pop(); ans = max(ans, ele.first); } cout << ans << endl; return 0; }