結果

問題 No.1306 Exactly 2 Digits
ユーザー やむなくやむなく
提出日時 2020-12-03 02:11:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 4,197 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 213,440 KB
最終ジャッジ日時 2025-01-16 14:07:15
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 123
権限があれば一括ダウンロードができます

ソースコード

diff #

//
// Created by yamunaku on 2020/12/03.
//

#include <bits/stdc++.h>
//#include <atcoder/all>

using namespace std;
//using namespace atcoder;

#define rep(i, n) for(int i = 0; i < (n); i++)
#define repl(i, l, r) for(int i = (l); i < (r); i++)
#define per(i, n) for(int i = ((n)-1); i >= 0; i--)
#define perl(i, l, r) for(int i = ((r)-1); i >= (l); i--)
#define all(x) (x).begin(),(x).end()
#define MOD9 998244353
#define MOD1 1000000007
#define IINF 1000000000
#define LINF 1000000000000000000
#define SP <<" "<<
#define CYES cout<<"Yes"<<endl
#define CNO cout<<"No"<<endl
#define CFS cin.tie(0);ios::sync_with_stdio(false)
#define CST(x) cout<<fixed<<setprecision(x)

using ll = long long;
using ld = long double;
using vi = vector<int>;
using mti = vector<vector<int>>;
using vl = vector<ll>;
using mtl = vector<vector<ll>>;
using pi = pair<int, int>;
using pl = pair<ll, ll>;
template<typename T>
using heap = priority_queue<T, vector<T>, function<bool(const T, const T)>>;

pair<int, int> query(int i, int j) {
    cout << "?" SP i + 1 SP j + 1 << endl;
    int p, q;
    cin >> p >> q;
    return {p, q};
}

int main() {
    //CFS;
    int n;
    cin >> n;
    map<pair<int, int>, vector<int>> mp;
    repl(i, 1, n * n - n) {
        auto p = query(i, 0);
        mp[p].push_back(i);
    }
    int pi = -1, pj = -1;
    rep(i, n - 1) {
        rep(j, n) {
            map<pair<int, int>, int> sz;
            rep(k, n - 1) {
                rep(l, n) {
                    if (i != k || j != l) {
                        int p = k - i, q = l - j;
                        if (p > q) swap(p, q);
                        sz[{p, q}]++;
                    }
                }
            }
            auto itr = sz.begin();
            auto itr2 = mp.begin();
            for (; itr != sz.end(); itr++, itr2++) {
                if (itr2->first != itr->first || itr2->second.size() != itr->second) goto next;
            }
            pi = i, pj = j;
            next:;
        }
    }
    mti ans(n - 1, vi(n, -1));
    ans[pi][pj] = 0;
    auto pl = mp.begin()->first;
    if (pl.first != pl.second && (pi != 0 || pj != 0)) {
        int l = mp.begin()->second[0];
        for (auto &c : mp) {
            int nx = pi + c.first.first, ny = pj + c.first.second;
            if (c.second.size() == 1) {
                if (nx < 0 || n - 1 <= nx || ny < 0 || n <= ny) {
                    nx = pi + c.first.second, ny = pj + c.first.first;
                }
                ans[nx][ny] = c.second[0];
            } else {
                auto s = query(c.second[0], l);
                if (nx == s.first && ny == s.second || nx == s.second && ny == s.first) {
                    ans[nx][ny] = c.second[0];
                    ans[pi + c.first.second][pj + c.first.first] = c.second[1];
                } else {
                    ans[nx][ny] = c.second[1];
                    ans[pi + c.first.second][pj + c.first.first] = c.second[0];
                }
            }
        }
    } else {
        int r = mp.rbegin()->second[0];
        for (auto &c : mp) {
            int nx = pi + c.first.first, ny = pj + c.first.second;
            if (c.second.size() == 1) {
                if (nx < 0 || n - 1 <= nx || ny < 0 || n <= ny) {
                    nx = pi + c.first.second, ny = pj + c.first.first;
                }
                ans[nx][ny] = c.second[0];
            } else {
                auto s = query(c.second[0], r);
                if (nx == s.first + n - 2 && ny == s.second + n - 1 || nx == s.second + n - 2 && ny == s.first + n - 1) {
                    ans[nx][ny] = c.second[0];
                    ans[pi + c.first.second][pj + c.first.first] = c.second[1];
                } else {
                    ans[nx][ny] = c.second[1];
                    ans[pi + c.first.second][pj + c.first.first] = c.second[0];
                }
            }
        }
    }
//    rep(i, n - 1) {
//        rep(j, n) {
//            cout << ans[i][j] << " ";
//        }
//        cout << endl;
//    }
    vi ansp(n * n - n);
    rep(i, n - 1) rep(j, n) ansp[ans[i][j]] = i * n + j + n;
    cout << "!";
    for (auto &x : ansp) cout << " " << x;
    cout << endl;
    return 0;
}
0