結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | Grun1396 |
提出日時 | 2017-04-08 08:25:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 686 bytes |
コンパイル時間 | 486 ms |
コンパイル使用メモリ | 67,112 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-17 23:16:09 |
合計ジャッジ時間 | 3,093 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
ソースコード
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; const int MAX_N = 16; int dp[1 << MAX_N] = {0}; int score_tbl[MAX_N][MAX_N] = {0}; int main(){ int n,m; cin >> n >> m; int a,b,score; for(int i = 0; i < m; i++){ cin >> a >> b >> score; score_tbl[a][b] = score; } for(int i = 0; i < 1 << n; i++){ for(int j = 0; j < m; j++){ for(int k = 0; k < m; k++){ if(((i >> j) & 1) && !((i >> k) & 1)){ dp[i | 1 << k] = max(dp[i | 1 << k],dp[i] + score_tbl[j][k]); } } } } cout << dp[(1 << n)-1] << endl; return 0; }