結果

問題 No.90 品物の並び替え
ユーザー iqueue02iqueue02
提出日時 2019-11-18 22:33:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 169,924 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 10:12:19
合計ジャッジ時間 2,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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;
    for (int i = n-1; i > 0; i--) {
      for (int j = i-1; j >= 0; j--) tmp += it[idx[j]][idx[i]];
    }
    res = max(res, tmp); 
  } while (next_permutation(idx.begin(), idx.end()));
  cout << res << endl;
  return 0;
}
0