結果

問題 No.90 品物の並び替え
ユーザー iqueue02iqueue02
提出日時 2019-11-18 22:26:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 169,108 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 10:03:38
合計ジャッジ時間 2,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;

int main(){
  int n, m;
  cin >> n >> m;
  vector<vector<int>> it(n, vector<int>(n,0));

  rep(i,m) {
    int a, b, c;
    cin >> a >> b >> c;
    it[a][b] = c;
  } 
  vector<int> idx;
  rep(i,n) idx.push_back(i);
  int res = 0;
  do {
    int tmp = 0;
    rep(i,n-1) tmp += it[idx[i]][idx[i+1]];
    res = max(res, tmp); 
  } while (next_permutation(idx.begin(), idx.end()));
  cout << res << endl;
  return 0;
}
0