結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー kotatsugamekotatsugame
提出日時 2024-12-25 05:48:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 64,000 KB
実行使用メモリ 25,476 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-25 05:48:33
合計ジャッジ時間 13,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
24,940 KB
testcase_01 AC 160 ms
24,812 KB
testcase_02 AC 174 ms
25,196 KB
testcase_03 AC 174 ms
24,812 KB
testcase_04 AC 162 ms
24,556 KB
testcase_05 AC 163 ms
25,196 KB
testcase_06 AC 167 ms
25,452 KB
testcase_07 AC 161 ms
24,824 KB
testcase_08 AC 161 ms
24,568 KB
testcase_09 AC 162 ms
25,208 KB
testcase_10 AC 159 ms
24,568 KB
testcase_11 AC 164 ms
24,568 KB
testcase_12 AC 157 ms
25,476 KB
testcase_13 AC 159 ms
25,208 KB
testcase_14 AC 155 ms
25,208 KB
testcase_15 AC 159 ms
24,952 KB
testcase_16 AC 151 ms
24,824 KB
testcase_17 AC 178 ms
24,952 KB
testcase_18 AC 163 ms
24,952 KB
testcase_19 AC 166 ms
24,824 KB
testcase_20 AC 159 ms
25,208 KB
testcase_21 AC 154 ms
24,568 KB
testcase_22 AC 158 ms
25,052 KB
testcase_23 AC 185 ms
24,824 KB
testcase_24 AC 159 ms
25,064 KB
testcase_25 AC 164 ms
24,824 KB
testcase_26 AC 162 ms
24,824 KB
testcase_27 AC 165 ms
24,568 KB
testcase_28 AC 156 ms
24,824 KB
testcase_29 AC 181 ms
24,824 KB
testcase_30 AC 158 ms
25,208 KB
testcase_31 AC 154 ms
25,208 KB
testcase_32 AC 156 ms
25,192 KB
testcase_33 AC 167 ms
24,824 KB
testcase_34 AC 164 ms
24,568 KB
testcase_35 AC 185 ms
24,812 KB
testcase_36 AC 155 ms
24,836 KB
testcase_37 AC 159 ms
24,952 KB
testcase_38 AC 156 ms
25,208 KB
testcase_39 AC 158 ms
25,208 KB
testcase_40 AC 160 ms
24,824 KB
testcase_41 AC 162 ms
25,208 KB
testcase_42 AC 165 ms
24,568 KB
testcase_43 AC 153 ms
24,568 KB
testcase_44 AC 154 ms
24,568 KB
testcase_45 AC 157 ms
25,208 KB
testcase_46 AC 151 ms
25,220 KB
testcase_47 AC 212 ms
25,220 KB
testcase_48 AC 172 ms
25,220 KB
testcase_49 AC 155 ms
25,208 KB
testcase_50 AC 155 ms
24,820 KB
testcase_51 AC 158 ms
24,580 KB
testcase_52 AC 163 ms
24,836 KB
testcase_53 AC 158 ms
24,580 KB
testcase_54 AC 186 ms
24,836 KB
testcase_55 AC 151 ms
25,220 KB
testcase_56 AC 151 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
using namespace std;
int N,Q;
bool ask(int a,int b)
{
	cout<<"? "<<a<<" "<<N<<" "<<b<<" "<<N<<endl;
	int x;cin>>x;
	return x==1;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>Q;
	int mn,mx;
	if(ask(1,2))mn=1,mx=2;
	else mn=2,mx=1;
	for(int i=3;i<N;i+=2)
	{
		int a=i,b=i+1;
		if(!ask(a,b))swap(a,b);
		if(ask(a,mn))mn=a;
		if(ask(mx,b))mx=b;
	}
	cout<<"! "<<mn<<" "<<mn<<" "<<mx<<" "<<N<<endl;
}
0