結果

問題 No.850 企業コンテスト2位
ユーザー kotatsugamekotatsugame
提出日時 2020-03-11 22:55:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 75,632 KB
実行使用メモリ 25,476 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-16 20:37:40
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,220 KB
testcase_01 AC 20 ms
24,580 KB
testcase_02 AC 19 ms
25,220 KB
testcase_03 AC 19 ms
25,220 KB
testcase_04 AC 20 ms
24,580 KB
testcase_05 AC 20 ms
25,220 KB
testcase_06 AC 20 ms
25,220 KB
testcase_07 AC 24 ms
25,476 KB
testcase_08 AC 25 ms
24,836 KB
testcase_09 AC 26 ms
25,220 KB
testcase_10 AC 30 ms
25,220 KB
testcase_11 AC 29 ms
24,836 KB
testcase_12 AC 28 ms
24,580 KB
testcase_13 AC 29 ms
25,208 KB
testcase_14 AC 29 ms
24,836 KB
testcase_15 AC 28 ms
24,824 KB
testcase_16 AC 28 ms
24,836 KB
testcase_17 AC 30 ms
25,220 KB
testcase_18 AC 28 ms
24,808 KB
testcase_19 AC 29 ms
24,964 KB
testcase_20 AC 30 ms
25,220 KB
testcase_21 AC 30 ms
24,836 KB
testcase_22 AC 29 ms
24,580 KB
testcase_23 AC 30 ms
25,220 KB
testcase_24 AC 32 ms
24,580 KB
testcase_25 AC 30 ms
24,964 KB
testcase_26 AC 30 ms
24,580 KB
testcase_27 AC 20 ms
25,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
vector<pair<int,int> >ask;
int N;
vector<int>now;
main()
{
	cin>>N;
	for(int i=1;i<=N;i++)now.push_back(i);
	while(now.size()>1)
	{
		vector<int>nxt;
		int i=0;
		for(;i+1<now.size();i+=2)
		{
			cout<<"? "<<now[i]<<" "<<now[i+1]<<endl;
			int t;
			cin>>t;
			nxt.push_back(t);
			ask.push_back(make_pair(now[i],now[i+1]));
		}
		if(i<now.size())nxt.push_back(now[i]);
		now=nxt;
	}
	int one=now[0];
	vector<int>ok;
	for(pair<int,int>p:ask)
	{
		if(p.first==one)ok.push_back(p.second);
		else if(p.second==one)ok.push_back(p.first);
	}
	int two=ok[0];
	for(int i=1;i<ok.size();i++)
	{
		cout<<"? "<<two<<" "<<ok[i]<<endl;
		cin>>two;
	}
	cout<<"! "<<two<<endl;
}
0