結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー chestnut_68chestnut_68
提出日時 2024-12-14 11:04:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,056 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 174,300 KB
実行使用メモリ 25,476 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-14 11:05:01
合計ジャッジ時間 16,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
24,556 KB
testcase_01 AC 179 ms
24,940 KB
testcase_02 AC 189 ms
25,088 KB
testcase_03 AC 192 ms
25,196 KB
testcase_04 AC 183 ms
24,940 KB
testcase_05 AC 187 ms
24,940 KB
testcase_06 AC 186 ms
25,196 KB
testcase_07 AC 179 ms
24,824 KB
testcase_08 AC 183 ms
24,952 KB
testcase_09 AC 177 ms
25,208 KB
testcase_10 AC 182 ms
24,824 KB
testcase_11 AC 178 ms
24,824 KB
testcase_12 AC 181 ms
24,836 KB
testcase_13 AC 183 ms
25,208 KB
testcase_14 AC 179 ms
24,568 KB
testcase_15 AC 176 ms
24,836 KB
testcase_16 AC 180 ms
24,952 KB
testcase_17 AC 180 ms
24,824 KB
testcase_18 AC 178 ms
25,208 KB
testcase_19 AC 181 ms
24,952 KB
testcase_20 AC 173 ms
24,952 KB
testcase_21 AC 170 ms
24,952 KB
testcase_22 AC 179 ms
25,196 KB
testcase_23 AC 172 ms
24,568 KB
testcase_24 AC 169 ms
25,192 KB
testcase_25 AC 181 ms
25,208 KB
testcase_26 AC 178 ms
25,208 KB
testcase_27 AC 179 ms
24,824 KB
testcase_28 AC 179 ms
24,952 KB
testcase_29 AC 183 ms
24,952 KB
testcase_30 AC 184 ms
25,208 KB
testcase_31 AC 180 ms
24,952 KB
testcase_32 AC 179 ms
25,208 KB
testcase_33 AC 176 ms
24,952 KB
testcase_34 AC 180 ms
25,076 KB
testcase_35 AC 183 ms
24,952 KB
testcase_36 AC 213 ms
24,836 KB
testcase_37 AC 184 ms
25,208 KB
testcase_38 AC 185 ms
25,208 KB
testcase_39 AC 184 ms
25,208 KB
testcase_40 AC 169 ms
25,208 KB
testcase_41 AC 182 ms
24,824 KB
testcase_42 AC 187 ms
25,208 KB
testcase_43 AC 174 ms
24,952 KB
testcase_44 AC 181 ms
24,952 KB
testcase_45 AC 173 ms
24,568 KB
testcase_46 AC 180 ms
24,580 KB
testcase_47 AC 217 ms
24,580 KB
testcase_48 AC 171 ms
24,964 KB
testcase_49 AC 172 ms
24,836 KB
testcase_50 AC 177 ms
24,580 KB
testcase_51 AC 178 ms
24,964 KB
testcase_52 AC 185 ms
24,836 KB
testcase_53 AC 184 ms
24,964 KB
testcase_54 AC 188 ms
24,836 KB
testcase_55 AC 175 ms
25,476 KB
testcase_56 AC 175 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int N,Q;cin>>N>>Q;
	queue<int> mq,Mq;
	for(int i=1;i<=N;i+=2){
		cout<<"? "<<i<<" "<<N<<" "<<i+1<<" "<<N<<endl;
		int f;
		cin>>f;
		if(f==-1)return 0;
		if(f){
			Mq.push(i+1);
			mq.push(i);
		}
		else{
			Mq.push(i);
			mq.push(i+1);
		}
	}
	
	while(Mq.size()>1){
		queue<int> tmq,tMq;
		
		while(Mq.size()>1){
			auto a=Mq.front();
			Mq.pop();
			auto b=Mq.front();
			Mq.pop();
			cout<<"? "<<a<<" "<<N<<" "<<b<<" "<<N<<endl;
			int f;
			if(f==-1)return 0;
			cin>>f;
			if(f){
				tMq.push(b);
			}
			else{
				tMq.push(a);
			}
		}
		while(tMq.size()){
			Mq.push(tMq.front());
			tMq.pop();
		}
		while(mq.size()>1){
			auto a=mq.front();
			mq.pop();
			auto b=mq.front();
			mq.pop();
			cout<<"? "<<a<<" "<<a<<" "<<b<<" "<<b<<endl;
			int f;
			cin>>f;
			if(f==-1)return 0;
			if(f){
				tmq.push(a);
			}
			else{
				tmq.push(b);
			}
		}
		while(tmq.size()){
			mq.push(tmq.front());
			tmq.pop();
		}
	}
	cout<<"! "<<mq.front()<<" "<<mq.front()<<" "<<Mq.front()<<" "<<N<<endl;
}
0