結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | amaridekinai |
提出日時 | 2019-09-17 18:04:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 8 ms / 5,000 ms |
コード長 | 1,147 bytes |
コンパイル時間 | 1,554 ms |
コンパイル使用メモリ | 166,608 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 13:19:54 |
合計ジャッジ時間 | 1,894 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int MAX_N = 1 << 15; const int MAX_V = 15; int dp[MAX_N]; int pre[MAX_V][MAX_V]; void chmax(int &a, int b){ if( a < b){ swap(a,b); } return ;} int main(){ int N,M; cin >> N >> M; for(int i = 0; i < MAX_V; i++){ for(int j = 0; j < MAX_V; j++){ pre[i][j] = 0;}}//初期化 for(int i = 0; i < MAX_N; i++){ dp[i] = 0;} for(int i = 0; i < M; i++){ int a,b,score; cin >> a >> b >> score; pre[a][b] = score;} for(int mask = 0; mask < (1<<N); mask++){ //すでに mask(2進数)までは並び終わっている状況を考える for(int a = 0; a < N; a++){ //まだaが並んでいない時、これを並べることを考える if( !(mask>>a & 1) ){ int res = 0; for(int b = 0; b < N; b++){ if( mask >> b & 1){ //すでに後ろにbが並んでいたら、それだけのscoreを受ける。 res += pre[a][b];}} chmax(dp[mask|1<<a], dp[mask]+res);} } } cout << dp[(1<<N)-1] << endl; return 0;}