結果

問題 No.3727 Garden Master
コンテスト
ユーザー shinchan
提出日時 2026-09-19 17:36:30
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 26 ms / 2,000 ms
+ 435µs
コード長 2,734 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,384 ms
コンパイル使用メモリ 346,996 KB
実行使用メモリ 9,924 KB
最終ジャッジ日時 2026-09-19 17:36:36
合計ジャッジ時間 4,725 ms
ジャッジサーバーID
(参考情報)
judge4_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;

#define all(v) (v).begin(),(v).end()
#define pb emplace_back
#define rep(i, n) for(int i=0;i<(n);i++)
#define foa(e, v) for(auto& e : v)
#define dout(a) cout<<fixed<<setprecision(10)<<a<<'\n';
#define Cout(a) cout<<a<<'\n';

using ll = long long;
using ld = long double;
using Int = __int128;
template <class T> using pqr = priority_queue<T, vector<T>, greater<T>>;

template <typename T1, typename T2> inline bool chmax(T1 &a, T2 b) {
    bool compare = a < b;
    if(compare) a = b;
    return compare;
}
template <typename T1, typename T2> inline bool chmin(T1 &a, T2 b) {
    bool compare = a > b;
    if(compare) a = b;
    return compare;
}
template <typename T> inline T back(std::set<T> &s) {
    return *s.rbegin();
}
template <typename T> inline T back(std::multiset<T> &s) {
    return *s.rbegin();
}
template <typename T> inline T pop_back(std::set<T> &s) {
    auto it = prev(s.end());
    T val = *it;
    s.erase(it); 
    return val;
}
template <typename T> inline T pop_back(std::multiset<T> &s) {
    auto it = prev(s.end());
    T val = *it;
    s.erase(it); 
    return val;
}

const int dy[8] = {-1, 0, 0, 1, 1, -1, 1, -1};
const int dx[8] = {0, -1, 1, 0, -1, -1, 1, 1};

const ll MOD7 = 1000000007, MOD998 = 998244353, INF = (3LL << 59);
const int inf = 1 << 30;
const char br = '\n';

void solve() {
    int n; cin >> n;
    vector<vector<pair<int, int>>> v(n + n);
    int m = n - 1;
    for(int i = 1; i <= n; i ++) {
        for(int j = 1; j <= n; j ++) {
            v[i - j + m].pb(i, j);
        }
    }
    vector a(n, vector(n, 0)), b(n, vector(n, 0));
    vector c(n, vector(n, 0));
    c[0][0] = -n + 1;
    c[n - 1][n - 1] = n - 1;
    rep(i, n) rep(j, n) {
        if(i + j < n - 1) {
            int num = c[i][j];
            if(num > 0) num --;
            else num ++;
            num = -num;
            c[i + 1][j] = c[i][j + 1] = num;
        }
    }
    for(int i = n - 1; i >= 0; i --) {
        for(int j = n - 1; j >= 0; j --) {
            if(i + j > n) {
                int num = c[i][j];
                if(num > 0) num --;
                else num ++;
                num = -num;
                c[i - 1][j] = c[i][j - 1] = num;
            }
        }
    }
    rep(i, n) rep(j, n) {
        auto [x, y] = v[c[i][j] + m].back();
        v[c[i][j] + m].pop_back();
        a[i][j] = x;
        b[i][j] = y;
    }
    rep(i, n) {
        foa(e, a[i]) cout << e << " ";
        cout << endl;
    }rep(i, n) {
        foa(e, b[i]) cout << e << " ";
        cout << endl;
    }
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int testcase = 1; 
    // cin >> testcase;
    while(testcase --) solve();

    return 0;
}
0