結果

問題 No.90 品物の並び替え
ユーザー yukicoderyukicoder
提出日時 2014-12-09 18:56:38
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 78,056 KB
最終ジャッジ日時 2024-06-11 18:56:28
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,692 KB
testcase_01 AC 98 ms
77,720 KB
testcase_02 AC 68 ms
75,292 KB
testcase_03 AC 82 ms
77,720 KB
testcase_04 AC 79 ms
77,588 KB
testcase_05 AC 103 ms
78,000 KB
testcase_06 AC 101 ms
78,056 KB
testcase_07 AC 80 ms
77,588 KB
testcase_08 AC 69 ms
75,676 KB
testcase_09 AC 247 ms
77,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

score = [0] * 1000

N, M = map(int, raw_input().split())
for t in xrange(M):
	a, b, c = map(int, raw_input().split())
	score[a * N + b] = c
	
def solve(m):
	res = 0
	for i in xrange(0, N):
		if (m >> i) & 1 == 0:
			tmp = 0
			for j in xrange(0, N):
				if (m >> j) & 1 == 1:
					tmp += score[j * N + i]
			res = max(res, tmp + solve(m | (1 << i)))			
	return res
	
print solve(0)
0