結果

問題 No.2958 Placing Many L-s
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-11-08 21:42:02
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 2,652 bytes
コンパイル時間 3,343 ms
コンパイル使用メモリ 116,864 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-11-08 21:42:20
合計ジャッジ時間 7,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 107 ms
5,248 KB
testcase_04 AC 102 ms
5,248 KB
testcase_05 AC 107 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 19 ms
5,248 KB
testcase_12 AC 10 ms
5,248 KB
testcase_13 AC 15 ms
5,248 KB
testcase_14 AC 12 ms
5,248 KB
testcase_15 AC 70 ms
5,248 KB
testcase_16 AC 15 ms
5,248 KB
testcase_17 AC 23 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 102 ms
5,248 KB
testcase_20 AC 90 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 97 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 127 ms
5,248 KB
testcase_25 AC 156 ms
5,248 KB
testcase_26 AC 150 ms
5,248 KB
testcase_27 AC 212 ms
5,248 KB
testcase_28 AC 133 ms
8,064 KB
testcase_29 AC 29 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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) % 8 != 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) {
  }
}
0