結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー loop0919loop0919
提出日時 2024-12-01 22:32:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 248,400 KB
実行使用メモリ 25,592 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-01 23:35:40
合計ジャッジ時間 15,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int N, Q;

int query(int l, int r, int L, int R) {
	cout << "? " << l << " " << r << " " << L << " " << R << endl;
	
	int X;
	cin >> X;

	return X;
}

void answer(int l, int r, int L, int R) {
	cout << "! " << l << " " << r << " " << L << " " << R << endl;
}

class Index {
	public:
	int l;

	Index(int l) : l(l) {}

	bool operator < (const Index& other) {
		int X = query(this->l, N, other.l, N);
		return X == 1;
	}

	bool operator >= (const Index& other) {
		int X = query(this->l, N, other.l, N);
		return X == 0;
	}
};


int main() {
	cin >> N >> Q;

	vector<Index> indexes;

	for (int i = 1; i <= N; i++) {
		indexes.push_back(Index(i));
	}

	auto [min_idx, max_idx] = minmax_element(indexes.begin(), indexes.end());
	answer(min_idx->l, min_idx->l, max_idx->l, N);
}
0