結果

問題 No.1830 Balanced Majority
ユーザー se1ka2se1ka2
提出日時 2022-02-04 22:04:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 65,680 KB
実行使用メモリ 25,964 KB
平均クエリ数 7.54
最終ジャッジ日時 2024-06-11 11:53:19
合計ジャッジ時間 2,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,964 KB
testcase_01 AC 25 ms
24,824 KB
testcase_02 AC 24 ms
25,208 KB
testcase_03 AC 24 ms
25,064 KB
testcase_04 AC 23 ms
24,952 KB
testcase_05 AC 23 ms
25,196 KB
testcase_06 AC 24 ms
24,824 KB
testcase_07 AC 24 ms
24,836 KB
testcase_08 AC 25 ms
24,964 KB
testcase_09 AC 25 ms
25,208 KB
testcase_10 AC 25 ms
24,836 KB
testcase_11 AC 26 ms
24,836 KB
testcase_12 AC 25 ms
25,220 KB
testcase_13 AC 28 ms
24,964 KB
testcase_14 AC 26 ms
25,220 KB
testcase_15 AC 26 ms
25,220 KB
testcase_16 AC 26 ms
24,836 KB
testcase_17 AC 27 ms
25,220 KB
testcase_18 AC 24 ms
25,220 KB
testcase_19 AC 25 ms
24,836 KB
testcase_20 AC 24 ms
25,092 KB
testcase_21 AC 28 ms
25,220 KB
testcase_22 AC 25 ms
25,220 KB
testcase_23 AC 26 ms
25,460 KB
testcase_24 AC 26 ms
24,580 KB
testcase_25 AC 24 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main()
{
	int n;
	cin >> n;
	int s0, s1;
	cout << "? " << 1 << endl;
	cin >> s0;
	cout << "? " << n - 1 << endl;
	cin >> s1;
	if(s0 != n / 2 - s1){
		cout << "! " << 2 << " " << n - 1 << endl;
		return 0;
	}
	int right = n, left = 0;
	bool f = s0;
	while(right - left > 1){
		int mid = (right + left) / 2;
		cout << "? " << mid << endl;
		int s;
		cin >> s;
		if(s * 2 == mid){
			if(mid * 2 > n) cout << "! " << 1 << " " << mid << endl;
			else cout << "! " << mid + 1 << " " << n << endl;
			return 0;
		}
		if((s * 2 > mid) == f) left = mid;
		else right = mid;
	}
}
0