結果
問題 | No.90 品物の並び替え |
ユーザー | かに |
提出日時 | 2015-11-15 23:38:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 1,722 bytes |
コンパイル時間 | 733 ms |
コンパイル使用メモリ | 91,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-13 15:15:03 |
合計ジャッジ時間 | 1,277 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <set> #include <map> #include <list> #include <queue> #include <stack> #include <cmath> #include <ctype.h> #include <ctime> #include <cstdio> #include <vector> #include <string> #include <bitset> #include <cctype> #include <cstdlib> #include <cstring> #include <utility> #include <numeric> #include <complex> #include <sstream> #include <fstream> #include <iomanip> #include <cassert> #include <iostream> #include <iterator> #include <algorithm> #define aLL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define F(i,j,k) fill(i[0],i[0]+j*j,k) #define P(p) cout<<(p)<<endl; #define EXISt(s,e) ((s).find(e)!=(s).end()) #define INF 1<<25 #define MAX 100000000 #define pb push_back #define mp make_pair using namespace std; typedef vector<int> vi; typedef vector<long long> vl; typedef vector<double> vd; typedef pair<int, int> pii; typedef pair<long, long> pll; typedef pair<pair<int, int>, int> pp; typedef long long ll; int dx[] = { 0, 1, 0, -1 }; int dy[] = { -1, 0, 1, 0 }; int sttoi(std::string str) { int ret; std::stringstream ss; ss << str; ss >> ret; return ret; } bool sort_greater(const pair<string, int> &a, const pair<string, int> &b) { return a.second > b.second; } void solve() { int n, m; cin >> n >> m; int v[9][9]; rep(i, 9)fill(v[i], v[i] + 9, 0); rep(i, m){ int a, b, c; cin >> a >> b >> c; v[a][b] = c; } int num[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; ll maxi = -1; ll point = 0; do{ point = 0; REP(i,0,n-1){ REP(j,i+1,n){ point += v[num[i]][num[j]]; } } maxi = max(maxi, point); } while (next_permutation(num, num+n)); P(maxi); } int main() { solve(); return 0; }