結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー daiotadaiota
提出日時 2024-12-02 08:46:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 171,200 KB
実行使用メモリ 25,476 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-02 08:47:11
合計ジャッジ時間 15,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)






int main(){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
    int i,j;


    int N,Q;
    cin >> N >> Q;

    vector<int> v,u;
    int X;
    for(i=1;i<N;i+=2){

    	cout << "?" << ' ' << i << ' ' << i << ' ' << i+1 << ' ' << i+1 << endl;
    	cout.flush();

    	cin >> X;

    	if(X==1){
    		v.push_back(i+1);
    		u.push_back(i);
    	}
    	else if(X==0){
       		v.push_back(i);
        	u.push_back(i+1);
    	}
    	else{
    		return 0;
    	}

    }


    int mx=0;
    int n=v.size();
    for(i=1;i<n;i++){

    	cout << "?" << ' ' << v[mx] << ' ' << N << ' ' << v[i] << ' ' << N << endl;
    	cout.flush();

    	cin >> X;

       	if(X==1) mx=i;
        else if(X==0) continue;
        else return 0;
    }

    int mn=0;
    for(i=1;i<n;i++){

    	cout << "?" << ' ' << u[mn] << ' ' << u[mn] << ' ' << u[i] << ' ' << u[i] << endl;
    	cout.flush();

    	cin >> X;

       	if(X==1) continue;
        else if(X==0) mn=i;
        else return 0;
    }


	cout << "!" << ' ' << u[mn] << ' ' << u[mn] << ' ' << v[mx] << ' ' << N << endl;
	cout.flush();





	return 0;

}
0