結果
問題 | No.90 品物の並び替え |
ユーザー | SugarDragon5 |
提出日時 | 2017-10-02 20:55:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 875 bytes |
コンパイル時間 | 1,713 ms |
コンパイル使用メモリ | 173,480 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 22:41:43 |
合計ジャッジ時間 | 2,295 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define vi vector<int> #define vvi vector<vi> #define vs vector<string> #define pb push_back #define P pair<int,int> #define vp vector<P> #define PP pair<P,int> #define vpp vector<PP> #define fi first #define se second #define INF (1<<30) #define MOD 1000000007 #define REP(i,n) for(int i=0;i<n;i++) #define REPR(i,n) for(int i=n;i>=0;i--) #define FOR(i,m,n) for(int i=m;i<n;i++) #define all(x) (x).begin(),(x).end() int main(){ int n,m; cin>>n>>m; vvi d(n,vi(n)); REP(i,m){ int a,b,c; cin>>a>>b>>c; d[b][a]=c; } vi vec; REP(i,n)vec.pb(i); int ans=0; do{ int sum=0; REP(i,n){ REP(j,i){ sum+=d[j][i]; } } ans=max(ans,sum); }while(next_permutation(all(vec))); cout<<ans<<endl; return 0; }