結果
問題 | No.519 アイドルユニット |
ユーザー | nebukuro09 |
提出日時 | 2017-05-28 22:18:51 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,225 bytes |
コンパイル時間 | 927 ms |
コンパイル使用メモリ | 123,164 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 19:29:09 |
合計ジャッジ時間 | 10,901 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 232 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 317 ms
6,944 KB |
testcase_05 | AC | 279 ms
6,944 KB |
testcase_06 | AC | 258 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 251 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 510 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 238 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 241 ms
6,948 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 316 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; void main() { auto N = readln.chomp.to!int; auto A = N.iota.map!(_ => readln.split.map!(to!int).array).array; auto used = new bool[](N); auto tied = new int[](N); int point = 0; foreach (i; 0..N/2) { int x, y; do { x = uniform(0, N); } while (used[x]); used[x] = true; do { y = uniform(0, N); } while (used[y]); used[y] = true; tied[x] = y; tied[y] = x; } foreach (_; 0..5*10^^6) { int x, y; do { x = uniform(0, N); y = uniform(0, N); } while (x == y); int xx = tied[x]; int yy = tied[y]; if (A[x][xx] + A[y][yy] < A[x][y] + A[xx][yy]) { tied[x] = y; tied[y] = x; tied[xx] = yy; tied[yy] = xx; } } point = 0; fill(used, false); foreach (i; 0..N) { if (!used[i]) point += A[i][tied[i]]; used[i] = used[tied[i]] = true; } point.writeln; }