結果

問題 No.90 品物の並び替え
ユーザー gigurururugigurururu
提出日時 2014-12-07 20:56:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,560 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-11 17:07:44
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 235 ms
12,288 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 102 ms
12,416 KB
testcase_04 AC 99 ms
12,288 KB
testcase_05 AC 233 ms
12,544 KB
testcase_06 AC 234 ms
12,544 KB
testcase_07 AC 81 ms
12,288 KB
testcase_08 AC 75 ms
12,416 KB
testcase_09 AC 1,560 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i)end
n,m=g
$s=(1..n).map{[0]*n}
m.times{
  a,b,c=g
  $s[a][b]=c
}
def dfs(done,left)
  left.map{|i|done.inject(0){|t,j|t+$s[j][i]}+dfs(done+[i],left-[i])}.max||0
end
p dfs([],[*0...n])
0