結果
| 問題 |
No.90 品物の並び替え
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-04 03:20:45 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 5,000 ms |
| コード長 | 771 bytes |
| コンパイル時間 | 998 ms |
| コンパイル使用メモリ | 121,728 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-12 07:11:13 |
| 合計ジャッジ時間 | 1,754 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
import std.stdio, std.string, std.conv, std.array, std.algorithm;
import std.uni, std.range, std.math, std.container, std.datetime;
import core.bitop;
immutable long MOD = 1_000_000_007;
void main(){
char[] buf; readln(buf);
auto input = buf.split.to!(int[]);
auto N = input[0], M = input[1];
auto st = new int[][](N, N);
foreach(i ; 0 .. M){
readln(buf);
input = buf.split.to!(int[]);
auto a = input[0], b = input[1], score = input[2];
st[a][b] = score;
}
int ans;
foreach(p ; iota(N).permutations){
int tmp;
foreach(i ; 0 .. N){
foreach(j ; i + 1 .. N){
tmp += st[p[i]][p[j]];
}
}
ans = max(tmp, ans);
}
writeln(ans);
}