結果

問題 No.845 最長の切符
ユーザー yuruhiyayuruhiya
提出日時 2020-10-20 18:46:46
言語 cLay
(20240714-1)
結果
AC  
実行時間 298 ms / 3,000 ms
コード長 426 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 177,916 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-05 14:36:12
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 298 ms
11,776 KB
testcase_17 AC 71 ms
5,504 KB
testcase_18 AC 51 ms
7,552 KB
testcase_19 AC 14 ms
5,376 KB
testcase_20 AC 80 ms
11,648 KB
testcase_21 AC 49 ms
11,520 KB
testcase_22 AC 61 ms
5,504 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 243 ms
11,520 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 12 ms
11,648 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 12 ms
11,648 KB
testcase_29 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

vector<ll> to[16],cost[16];
ll dp[1d5][16];
{
	ll@n, @m;
	rep(m){
		ll@u,@v,@c;
		to[--u].push_back(--v);
		cost[u].push_back(c);
		to[v].push_back(u);
		cost[v].push_back(c);
	}
	dp[0..(1<<n)-1][0...n-1]=-1;
	dp[1<<(0..n-1)][0..]=0;
	rep(s,1<<n)rep(v,n)if(dp[s][v]!=-1){
		rep(i,to[v].size())if(!(s&1<<to[v][i]))dp[s|1<<to[v][i]][to[v][i]] >?= dp[s][v]+cost[v][i];
	}
	ll ans=0;
	ans >?= dp[0..(1<<n)-1][0...n-1];
	wt(ans);
}
0