結果

問題 No.437 cwwゲーム
ユーザー ldsybldsyb
提出日時 2016-10-28 23:48:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 544 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 65,152 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-11-24 06:39:47
合計ジャッジ時間 59,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
10,496 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 2 ms
8,448 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
8,448 KB
testcase_28 TLE -
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 2 ms
5,248 KB
testcase_35 WA -
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 WA -
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int solve(string s, int score = 0){
	for(int i = 0; i < s.size() - 2; i++) for(int j = i + 1; j < s.size() - 1; j++) for(int k = j + 1; k < s.size(); k++) if(s[i] != s[j] && s[j] == s[k]){
		int cww = (s[i] - '0') * 100 + (s[j] - '0') * 10 + (s[k] - '0');
		string tmp = s;
		tmp.erase(tmp.begin() + i);
		tmp.erase(tmp.begin() + j - 1);
		tmp.erase(tmp.begin() + k - 2);
		score = max(score, solve(tmp, score + cww));
	}
	return score;
}

int main(){
	string n;
	cin >> n;
	cout << solve(n) << endl;
}
0