結果

問題 No.1306 Exactly 2 Digits
ユーザー KKT89KKT89
提出日時 2020-12-04 15:21:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 4,217 bytes
コンパイル時間 2,587 ms
コンパイル使用メモリ 221,640 KB
実行使用メモリ 24,516 KB
平均クエリ数 1311.52
最終ジャッジ日時 2023-09-24 09:05:53
合計ジャッジ時間 45,448 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,652 KB
testcase_01 RE -
testcase_02 AC 25 ms
24,240 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 26 ms
23,436 KB
testcase_07 AC 25 ms
23,880 KB
testcase_08 AC 24 ms
23,520 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 23 ms
23,436 KB
testcase_21 AC 25 ms
24,024 KB
testcase_22 RE -
testcase_23 AC 25 ms
23,700 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 26 ms
23,244 KB
testcase_34 RE -
testcase_35 WA -
testcase_36 AC 25 ms
23,424 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 27 ms
23,652 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 30 ms
24,240 KB
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 WA -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 WA -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 WA -
testcase_74 RE -
testcase_75 RE -
testcase_76 RE -
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 WA -
testcase_82 RE -
testcase_83 RE -
testcase_84 RE -
testcase_85 RE -
testcase_86 RE -
testcase_87 RE -
testcase_88 RE -
testcase_89 RE -
testcase_90 WA -
testcase_91 RE -
testcase_92 WA -
testcase_93 RE -
testcase_94 RE -
testcase_95 RE -
testcase_96 RE -
testcase_97 AC 100 ms
23,544 KB
testcase_98 AC 95 ms
23,388 KB
testcase_99 RE -
testcase_100 RE -
testcase_101 RE -
testcase_102 RE -
testcase_103 RE -
testcase_104 RE -
testcase_105 RE -
testcase_106 WA -
testcase_107 RE -
testcase_108 WA -
testcase_109 RE -
testcase_110 AC 101 ms
23,880 KB
testcase_111 AC 105 ms
24,240 KB
testcase_112 AC 96 ms
24,228 KB
testcase_113 RE -
testcase_114 RE -
testcase_115 RE -
testcase_116 RE -
testcase_117 RE -
testcase_118 RE -
testcase_119 WA -
testcase_120 AC 100 ms
23,412 KB
testcase_121 RE -
testcase_122 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;

int main(){
    int n; cin >> n;
    if(n==2){ // 出力周り確認
        cout << "? 1 2" << endl;
        int a,b; cin >> a >> b;
        if(a==-1){
            cout << "! 2 3" << endl;
        }
        else{
            cout << "! 3 2" << endl;
        }
        return 0;
    }
    vector<pair<int,int>> v;
    for(int i=2;i<=n*n-n;i++){
        cout << "? 1 " << i << endl;
        int a,b; cin >> a >> b;
        if(a>b)swap(a,b);
        v.push_back({a,b});
    }
    vector<int> res(n*n-n,-1);
    set<int> used;
    {
        int a=0,b=0;
        vector<int> vv;
        for(int i=0;i<v.size();i++){
            if(v[i].first==0){
                vv.push_back(v[i].second);
            }
        }
        sort(vv.rbegin(), vv.rend());
        if(vv.size()>0){
            a=vv[0];
            for(int i=1;i<vv.size();i++){
                if(vv[i]==vv[i-1]){
                    b=vv[i]; break;
                }
            }
        }
        int one=a+(b+1)*n;
        used.insert(one);
        res[0]=one;
    }
    int cnt=0;
    auto query=[&](int base,int a,int b)->pair<int,int>{
        cnt++;
        a*=-1; b*=-1;
        int f=base/n,s=base%n;
        int c=-1;
        int d=-1;
        if(1<=f+a and f+a<n){
            if(0<=s+b and s+b<=n-1){
                c=(f+a)*n+(s+b);
            }
        }
        if(1<=f+b and f+b<n){
            if(0<=s+a and s+a<=n-1){
                d=(f+b)*n+(s+a);
            }
        }
        if(n<=c and c<=n*n-1){
            if(used.find(c)!=used.end()){
                c=-1;
            }
        }
        else{
            c=-1;
        }
        swap(c,d);
        if(n<=c and c<=n*n-1){
            if(used.find(c)!=used.end()){
                c=-1;
            }
        }
        else{
            c=-1;
        }
        if(c==d)c=-1;
        return make_pair(c,d);
    };
    int id=-1;
    int mx=0;
    for(int i=0;i<v.size();i++){
        pair<int,int> p=query(res[0],v[i].first,v[i].second);
        if(p.first==-1 or p.second==-1){
            if(abs(v[i].first)!=abs(v[i].second)){
                if(id==-1){
                    id=i+1;
                    mx=max(abs(v[i].first),abs(v[i].second));
                }
                else if(mx<max(abs(v[i].first),abs(v[i].second))){
                    id=i+1;
                    mx=max(abs(v[i].first),abs(v[i].second));
                }
            }
            res[i+1]=max(p.first,p.second);
            used.insert(res[i+1]);
        }
    }
    for(int i=0;i<v.size();i++){
        if(res[i+1]!=-1)continue;
        pair<int,int> p=query(res[0],v[i].first,v[i].second);
        if(p.first==-1 or p.second==-1){
            res[i+1]=max(p.first,p.second);
            used.insert(res[i+1]);
        }
        // else{
        //     cout << "? " << id+1 << " " << i+2 << endl;
        //     int a,b; cin >> a >> b;
        //     if(a>b)swap(a,b);
        //     pair<int,int> pp=query(res[id],a,b);
        //     map<int,int> mp;
        //     mp[p.first]++; mp[p.second]++; mp[pp.first]++; mp[pp.second]++;
        //     for(auto p:mp){
        //         if(p.second>1){
        //             res[i+1]=p.first;
        //             used.insert(p.first);
        //         }
        //     }
        // }
    }
    for(int i=0;i<v.size();i++){
        if(res[i+1]!=-1)continue;
        pair<int,int> p=query(res[0],v[i].first,v[i].second);
        if(p.first==-1 or p.second==-1){
            id=i+1;
            res[i+1]=max(p.first,p.second);
            used.insert(res[i+1]);
        }
        else{
            cout << "? " << id+1 << " " << i+2 << endl;
            int a,b; cin >> a >> b;
            if(a>b)swap(a,b);
            pair<int,int> pp=query(res[id],a,b);
            map<int,int> mp;
            mp[p.first]++; mp[p.second]++; mp[pp.first]++; mp[pp.second]++;
            for(auto p:mp){
                if(p.second>1){
                    res[i+1]=p.first;
                    used.insert(p.first);
                }
            }
        }
    }
    assert(cnt<=(n-1)*n/2*3);
    cout << "!";
    for(int i:res){
        cout << " " << i;
    }
    cout << endl;
}
0