結果
問題 | No.861 ケーキカット |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-08-14 03:29:10 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,398 bytes |
コンパイル時間 | 903 ms |
コンパイル使用メモリ | 123,148 KB |
実行使用メモリ | 168,416 KB |
最終ジャッジ日時 | 2024-06-22 02:08:53 |
合計ジャッジ時間 | 10,073 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 342 ms
166,504 KB |
testcase_01 | AC | 340 ms
166,932 KB |
testcase_02 | AC | 336 ms
166,552 KB |
testcase_03 | AC | 334 ms
167,356 KB |
testcase_04 | AC | 340 ms
166,504 KB |
testcase_05 | AC | 343 ms
166,572 KB |
testcase_06 | AC | 337 ms
166,744 KB |
testcase_07 | AC | 334 ms
167,396 KB |
testcase_08 | AC | 346 ms
168,416 KB |
testcase_09 | AC | 338 ms
166,728 KB |
testcase_10 | AC | 332 ms
168,084 KB |
testcase_11 | AC | 333 ms
166,528 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.complex, std.container, std.math, std.numeric, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } real readReal() { return readToken.to!real; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } enum N = 5; enum V = N * N; int[] G, GSum; bool[] vis; void dfs(int p) { if (!vis[p]) { vis[p] = true; if (2 * popcnt(p) < V) { foreach (v; 0 .. V) { if ((GSum[p] >> v) & 1) { dfs(p | 1 << v); } } } } } enum INF = 10L^^18; void main() { G = new int[V]; foreach (u; 0 .. V) foreach (v; 0 .. V) { if (abs(u / N - v / N) + abs(u % N - v % N) == 1) { G[u] |= 1 << v; } } GSum = new int[1 << V]; foreach (u; 0 .. V) foreach (p; 0 .. 1 << u) { GSum[p | 1 << u] = GSum[p] | G[u]; } vis = new bool[1 << V]; foreach (u; 0 .. V) { dfs(1 << u); } stderr.writeln(vis.count(true)); try { for (; ; ) { auto C = new long[V]; foreach (u; 0 .. V) { C[u] = readLong(); } long ans = INF; foreach (p; 0 .. 1 << V) { if (vis[p]) { long diff = 0; foreach (u; 0 .. V) { // dmd BUG // diff += (((p >> u) & 1) ? -1 : +1) * C[u]; if ((p >> u) & 1) { diff -= C[u]; } else { diff += C[u]; } } chmin(ans, abs(diff)); } } writeln(ans); } } catch (EOFException e) { } }