結果

問題 No.2112 All 2x2 are Equal
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-21 14:14:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,263 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 210,728 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-12-20 18:12:13
合計ジャッジ時間 9,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 48 ms
7,424 KB
testcase_06 AC 84 ms
10,624 KB
testcase_07 AC 27 ms
5,760 KB
testcase_08 AC 65 ms
9,472 KB
testcase_09 WA -
testcase_10 AC 31 ms
6,272 KB
testcase_11 AC 22 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 75 ms
9,728 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 64 ms
9,216 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 6 ms
5,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 9 ms
5,248 KB
testcase_25 AC 11 ms
5,248 KB
testcase_26 AC 9 ms
5,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 8 ms
5,248 KB
testcase_30 AC 27 ms
5,504 KB
testcase_31 AC 49 ms
7,808 KB
testcase_32 AC 90 ms
11,136 KB
testcase_33 AC 89 ms
11,136 KB
testcase_34 WA -
testcase_35 AC 92 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int h, w;
    cin >> h >> w;
    cout << "Yes\n";
    vector<vector<int>> ans(h, vector<int>(w, 0));
    deque<int> dq;
    for (int i = 1; i <= h * w; i++) {
        dq.push_back(i);
    }
    for (int i = 0; i < (h % 2 && w % 2 ? h - 1 : h); i++) {
        for (int j = 0; j < w; j++) {
            if (i % 2 == 0) {
                ans[i][j] = dq.front();
                dq.pop_front();
            } else {
                ans[i][j] = dq.back();
                dq.pop_back();
            }
            if (i % 2 && j % 2) {
                swap(ans[i - 1][j], ans[i][j]);
            }
        }
    }
    if (h % 2 && w % 2) {
        int s = ans[0][0] + ans[0][1] + ans[1][0] + ans[1][1];
        ans[h - 1][0] = dq.front();
        for (int i = 1; i < w; i++) {
            ans[h - 1][i] =
                s - ans[h - 1][i - 1] - ans[h - 2][i - 1] - ans[h - 2][i];
        }
    }
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            cout << ans[i][j] << " ";
        }
        cout << "\n";
    }
}
0