結果
問題 | No.2112 All 2x2 are Equal |
ユーザー |
|
提出日時 | 2022-10-28 22:24:30 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 751 bytes |
コンパイル時間 | 2,041 ms |
コンパイル使用メモリ | 197,320 KB |
最終ジャッジ日時 | 2025-02-08 14:41:58 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef _RUTHEN #include <debug.hpp> #else #define show(...) true #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); i++) template <class T> using V = vector<T>; void solve() { int H, W; cin >> H >> W; V<V<int>> ans(H, V<int>(W)); int c = 1; rep(i, H) { if (i % 2 == 0) { rep(j, W) ans[i][j] = c++; } else { rep(j, W) ans[i][W - 1 - j] = c++; } } show(ans); cout << "Yes" << '\n'; rep(i, H) rep(j, W) cout << (j % 2 == 1 ? ans[H - 1 - i][j] : ans[i][j]) << " \n"[j == W - 1]; } int main() { ios::sync_with_stdio(false); cin.tie(0); int tt = 1; while (tt--) solve(); return 0; }