結果

問題 No.2252 Find Zero
ユーザー lddlinanlddlinan
提出日時 2023-03-24 22:02:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 84,964 KB
実行使用メモリ 25,452 KB
平均クエリ数 74.33
最終ジャッジ日時 2024-09-18 17:06:24
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
25,196 KB
testcase_01 AC 60 ms
25,196 KB
testcase_02 AC 45 ms
24,556 KB
testcase_03 AC 57 ms
24,940 KB
testcase_04 AC 48 ms
24,556 KB
testcase_05 AC 47 ms
25,196 KB
testcase_06 AC 46 ms
24,812 KB
testcase_07 AC 47 ms
24,428 KB
testcase_08 AC 47 ms
25,220 KB
testcase_09 AC 56 ms
25,208 KB
testcase_10 AC 46 ms
24,812 KB
testcase_11 AC 48 ms
24,940 KB
testcase_12 AC 46 ms
24,812 KB
testcase_13 AC 46 ms
25,196 KB
testcase_14 AC 46 ms
25,196 KB
testcase_15 AC 44 ms
24,940 KB
testcase_16 AC 46 ms
24,428 KB
testcase_17 AC 48 ms
25,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;
class mypcmp {
public:
    bool operator()(const int& a, const int& b) {
        return a<b;
    }
};



char mk[1004];
int pp[32];
int main() {
    int n, i, j, v, p, k, a, b;
    scanf("%d", &n);
    p=-1;
    for (i=0; i<n; i++) mk[i]=0;
    i=0; while(1) {
        if (p==-1) {
            while(i<n&&mk[i]) i++;
            a=i++;
            while(i<n&&mk[i]) i++;
            if (i>=n) { p=a; break; }
            b=i++;
        } else {
            while(i<n&&mk[i]) i++;
            if (i>=n) break;
            a=i++;
            b=p;
        }
        mk[a]=1; mk[b]=1;
        printf("? %d %d\n", a, b); fflush(stdout);
        scanf("%d", &k);
        if (k==a) { p=b; break; }
        if (k==b) { p=a; break; }
        if (mk[k]) p=-1;
        else { p=k; mk[k]=1; }
    }
    printf("! %d\n", p);
    fflush(stdout);
    return 0;
}
0