結果
問題 | No.90 品物の並び替え |
ユーザー | 👑 CleyL |
提出日時 | 2020-02-05 19:35:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 168 ms / 5,000 ms |
コード長 | 778 bytes |
コンパイル時間 | 628 ms |
コンパイル使用メモリ | 74,684 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 21:20:43 |
合計ジャッジ時間 | 1,339 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 15 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 17 ms
6,940 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 168 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct nya{ int pv,nx,scr; }; int main(){ int n,m;cin>>n>>m; vector<int> A(n); for(int i = 0; n > i; i++){ A[i] = i; } vector<nya> Z(m); for(int i = 0; m > i; i++){ cin>>Z[i].pv>>Z[i].nx>>Z[i].scr; } int ans = 0; do{ int tmp = 0; for(int i = 0; m > i; i++){ for(int j = 0; n > j; j++){ if(A[j] == Z[i].pv){ tmp += Z[i].scr; break; } if(A[j] == Z[i].nx){ break; } } } ans = max(ans,tmp); }while(next_permutation(A.begin(),A.end())); cout << ans << endl; }