QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#521416#2199. Intriguing SelectionsocpiteWA 1ms3900kbC++233.4kb2024-08-16 10:19:122024-08-16 10:19:13

Judging History

你现在查看的是最新测评结果

  • [2024-08-16 10:19:13]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3900kb
  • [2024-08-16 10:19:12]
  • 提交

answer

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

const int maxn = 205;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

vector<int> g[maxn], rg[maxn];

bool vis[maxn];
bool asked[maxn][maxn];

void dfs(int x, int &cnt){
    vis[x] = 1;
    cnt++;
    for(auto v: g[x])if(!vis[v])dfs(v, cnt);
}

void rdfs(int x, int &cnt){
    vis[x] = 1;
    cnt++;
    for(auto v: rg[x])if(!vis[v])rdfs(v, cnt);
}


int main() {
    int t;
    cin >> t;
    while(t--){
        int n;
        cin >> n;
        memset(asked, 0, sizeof(asked));
        vector<pair<int, int>> vec;
        for(int i = 1; i <= 2*n; i++){
            g[i].clear();
            rg[i].clear();
            for(int j = 1; j < i; j++)vec.push_back({i, j});
        }
        shuffle(vec.begin(), vec.end(), rng);
        while(true){
            bool br = 1;
            for(auto p: vec){
                if(asked[p.first][p.second])continue;
                bool f1 = 0, f2 = 0;
                int cnt = 0;
                memset(vis, 0, sizeof(vis));
                dfs(p.first, cnt);
                if(cnt > n)f1 = 1;

                memset(vis, 0, sizeof(vis));
                rdfs(p.first, cnt);
                if(cnt > n)f1 = 1;
                cnt = 0;
                memset(vis, 0, sizeof(vis));
                dfs(p.second, cnt);
                if(cnt > n)f2 = 1;

                cnt = 0;
                memset(vis, 0, sizeof(vis));
                rdfs(p.second, cnt);
                if(cnt > n)f2 = 1;


                if(f1 || f2)continue;
                asked[p.first][p.second] = 1;
                cout << "? " << p.first << " " << p.second << endl;

                char c;
                cin >> c;
                if(c == '>'){
                    g[p.first].push_back(p.second);
                    rg[p.second].push_back(p.first);
                }
                else {
                    rg[p.first].push_back(p.second);
                    g[p.second].push_back(p.first);
                }
                br = 0;
            }
            if(br)break;
        }
        while(true){
            bool br = 1;
            for(auto p: vec){
                if(asked[p.first][p.second])continue;
                bool f1 = 0, f2 = 0;
                int cnt = 0;
                memset(vis, 0, sizeof(vis));
                dfs(p.first, cnt);
                if(cnt > n)f1 = 1;

                memset(vis, 0, sizeof(vis));
                rdfs(p.first, cnt);
                if(cnt > n)f1 = 1;
                cnt = 0;
                memset(vis, 0, sizeof(vis));
                dfs(p.second, cnt);
                if(cnt > n)f2 = 1;

                cnt = 0;
                memset(vis, 0, sizeof(vis));
                rdfs(p.second, cnt);
                if(cnt > n)f2 = 1;


                if(f1 && f2)continue;
                asked[p.first][p.second] = 1;
                cout << "? " << p.first << " " << p.second << endl;

                char c;
                cin >> c;
                if(c == '>'){
                    g[p.first].push_back(p.second);
                    rg[p.second].push_back(p.first);
                }
                else {
                    rg[p.first].push_back(p.second);
                    g[p.second].push_back(p.first);
                }
                br = 0;
            }
            if(br)break;
        }
        cout << "!" << endl;
    }
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3900kb

input:

2
3
<
<
<
<
<
<
<
<
3
<
<
<
>
>
<
>
>
>

output:

? 5 1
? 6 4
? 2 1
? 6 5
? 3 2
? 4 3
? 6 3
? 5 3
!
? 5 2
? 5 3
? 3 2
? 6 3
? 4 1
? 4 2
? 5 1
? 6 4
? 4 3
!

result:

wrong answer Case 0: all players in topn are comparable