結果
問題 | No.90 品物の並び替え |
ユーザー | ikd |
提出日時 | 2016-07-29 21:14:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 512 ms / 5,000 ms |
コード長 | 713 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 64,284 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 18:32:40 |
合計ジャッジ時間 | 1,791 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 37 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 6 ms
5,248 KB |
testcase_05 | AC | 42 ms
5,248 KB |
testcase_06 | AC | 30 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 512 ms
5,248 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #define pb push_back using namespace std; int main(){ int N, M; cin>> N>> M; vector<int> o1, o2, s; for(int i=0; i<M; i++){ int x, y, z; cin>> x>> y>> z; o1.pb(x); o2.pb(y); s.pb(z); } vector<int> id; for(int i=0; i<N; i++){ id.pb(i); } int ans=-1; do{ int sum=0; for(int i=0; i<M; i++){ auto it1=find(id.begin(), id.end(), o1[i]); auto it2=find(id.begin(), id.end(), o2[i]); if(it1<it2) sum+=s[i]; } ans=max(ans, sum); }while(next_permutation(id.begin(), id.end())); cout<< ans<< endl; return 0; }