結果
問題 | No.861 ケーキカット |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-08-14 03:33:40 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,699 bytes |
コンパイル時間 | 2,020 ms |
コンパイル使用メモリ | 123,460 KB |
実行使用メモリ | 168,408 KB |
最終ジャッジ日時 | 2024-06-22 02:09:47 |
合計ジャッジ時間 | 30,001 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
ソースコード
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)); } int root(int[] uf, int u) { return (uf[u] < 0) ? u : (uf[u] = uf.root(uf[u])); } bool connect(int[] uf, int u, int v) { u = uf.root(u); v = uf.root(v); if (u == v) return false; if (uf[u] > uf[v]) swap(u, v); uf[u] += uf[v]; uf[v] = u; return true; } 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] && vis[((1 << V) - 1) ^ 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) { } }