結果
問題 | No.90 品物の並び替え |
ユーザー | silopy |
提出日時 | 2019-06-28 23:24:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 508 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 67,348 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 05:11:39 |
合計ジャッジ時間 | 1,863 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | RE | - |
ソースコード
#include<iostream> #include<algorithm> using namespace std; using lint=int64_t; int main() { int N,M; int item1[20]; int item2[20]; int score[20]; cin >> N >> M; for(int i=0;i<M;i++) { cin >> item1[i]; cin >> item2[i]; cin >> score[i]; } int perm[]={0,1,2,3,4,5,6,7,8,9}; int ans=0; do { int tans=0; for(int i=0;i<M;i++) { if(perm[item1[i]]<perm[item2[i]]) tans+=score[i]; } ans=max(ans,tans); }while(next_permutation(perm,perm+N)); cout << ans << endl; return 0; }