結果
問題 | No.2958 Placing Many L-s |
ユーザー | 👑 hos.lyric |
提出日時 | 2024-11-08 21:40:53 |
言語 | D (dmd 2.106.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,652 bytes |
コンパイル時間 | 2,895 ms |
コンパイル使用メモリ | 116,992 KB |
実行使用メモリ | 816,512 KB |
最終ジャッジ日時 | 2024-11-08 21:41:14 |
合計ジャッジ時間 | 6,571 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, 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; } string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; } 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[][] solve(int M, int N) { if ((M * N) % 4 != 0) return null; if (M == 1) return null; if (N == 1) return null; if (N % 4 != 0) { const aa = solve(N, M); auto a = new int[][](M, N); foreach (x; 0 .. M) foreach (y; 0 .. N) a[x][y] = aa[y][x]; return a; } auto a = new int[][](M, N); int k; int x; if (M & 1) { assert(N % 8 == 0); enum PAT = [ [0, 0, 2, 2, 2, 3, 5, 5], [0, 1, 2, 3, 3, 3, 4, 5], [0, 1, 1, 1, 4, 4, 4, 5], ]; for (int y = 0; y < N; y += 8) { foreach (dx; 0 .. 3) foreach (dy; 0 .. 8) a[x + dx][y + dy] = k + PAT[dx][dy]; k += 6; } x += 3; } assert((M - x) % 2 == 0); assert(N % 4 == 0); for (; x < M; x += 2) { for (int y = 0; y < N; y += 4) { a[x][y] = a[x][y + 1] = a[x][y + 2] = a[x + 1][y] = k++; a[x][y + 3] = a[x + 1][y + 1] = a[x + 1][y + 2] = a[x + 1][y + 3] = k++; } } return a; } void main() { try { for (; ; ) { const numCases = readInt; foreach (caseId; 0 .. numCases) { const M = readInt; const N = readInt; const ans = solve(M, N); if (ans) { writeln((M * N) / 4); foreach (x; 0 .. M) { foreach (y; 0 .. N) { if (y) write(" "); write(ans[x][y] + 1); } writeln; } } else { writeln(-1); } } } } catch (EOFException e) { } }