結果
問題 | No.437 cwwゲーム |
ユーザー | startcpp |
提出日時 | 2016-11-02 23:14:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 559 ms |
コンパイル使用メモリ | 58,292 KB |
実行使用メモリ | 814,848 KB |
最終ジャッジ日時 | 2024-05-03 21:13:55 |
合計ジャッジ時間 | 3,725 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
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 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
//ノーコンパイル(ry #include <iostream> #include <string> #include <algorithm> using namespace std; string s; int dp[10000]; //remの下位iビット目が1なら, s[i](nの上位i桁目)を使っていない。 int dfs(int rem) { if (dp[rem] != -1) return dp[rem]; int ret = 0; for (int i = 0; i < s.length(); i++) { if ((rem >> i) % 2 == 0) continue; for (int j = i + 1; j < s.length(); j++) { if((rem >> j) % 2 == 0) continue; for (int k = j + 1; k < s.length(); k++) { if ((rem >> k) % 2 == 0) continue; if (s[i] != '0' && s[i] != s[j] && s[j] == s[k]) { int plus = (int)(s[i] - '0') * 100 + (s[j] - '0') * 10 + (s[k] - '0'); ret = max(ret, plus + dfs(rem - (1 >> i) - (1 >> j) - (1 >> k))); } } } } return ret; } int main() { for (int i = 0; i < 10000; i++) dp[i] = -1; cin >> s; cout << dfs((1 << (int)s.length()) - 1) << endl; return 0; }