結果
問題 | No.90 品物の並び替え |
ユーザー | yaoshimax |
提出日時 | 2015-03-01 23:32:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 79 ms / 5,000 ms |
コード長 | 1,278 bytes |
コンパイル時間 | 880 ms |
コンパイル使用メモリ | 94,060 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 00:41:18 |
合計ジャッジ時間 | 1,422 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 10 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 11 ms
6,940 KB |
testcase_06 | AC | 8 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 79 ms
6,944 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <cstring> using namespace std; int main(){ int N,M; cin >> N >> M; vector<int> perm; for( int i = 0 ; i < N ; i++ ){ perm.push_back(i); } vector<pair<int,int> > order[N]; for( int i = 0 ; i < M ; i++ ){ int a,b,s; cin >> a >> b >> s; order[b].push_back(make_pair(a,s)); } int score = 0; do{ int curScore = 0; bool appeared[N]; memset(appeared,false,sizeof(appeared)); for( int i = 0 ; i < N ; i++ ){ appeared[perm[i]]=true; int p = perm[i]; for( int j = 0 ; j < (int)order[p].size(); j++ ){ pair<int,int> pa= order[p][j]; int prev = pa.first; int scr=pa.second; if( appeared[prev] == false ){ curScore+=scr; } } } score =max(score,curScore); }while(next_permutation(perm.begin(),perm.end())); printf("%d\n",score); return 0; }