結果

問題 No.1830 Balanced Majority
ユーザー miscalcmiscalc
提出日時 2022-02-04 22:07:34
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 1,460 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 200,580 KB
実行使用メモリ 24,324 KB
平均クエリ数 8.27
最終ジャッジ日時 2023-09-02 04:56:12
合計ジャッジ時間 4,597 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,264 KB
testcase_01 AC 23 ms
23,424 KB
testcase_02 AC 22 ms
23,424 KB
testcase_03 AC 23 ms
24,084 KB
testcase_04 AC 23 ms
23,388 KB
testcase_05 AC 23 ms
24,012 KB
testcase_06 AC 22 ms
24,000 KB
testcase_07 AC 24 ms
23,544 KB
testcase_08 AC 24 ms
23,388 KB
testcase_09 AC 25 ms
23,844 KB
testcase_10 AC 25 ms
24,312 KB
testcase_11 AC 25 ms
23,820 KB
testcase_12 AC 26 ms
23,604 KB
testcase_13 AC 26 ms
24,072 KB
testcase_14 AC 24 ms
23,400 KB
testcase_15 AC 25 ms
24,012 KB
testcase_16 AC 24 ms
23,448 KB
testcase_17 AC 24 ms
24,048 KB
testcase_18 AC 23 ms
23,376 KB
testcase_19 AC 22 ms
24,060 KB
testcase_20 AC 23 ms
23,640 KB
testcase_21 AC 26 ms
24,072 KB
testcase_22 AC 26 ms
24,324 KB
testcase_23 AC 26 ms
24,048 KB
testcase_24 AC 26 ms
23,436 KB
testcase_25 AC 24 ms
23,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/modint>
using namespace atcoder;
//using mint = modint998244353;
using mint = modint1000000007;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll safemod(ll A, ll M) {return (A % M + M) % M;}
ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;}
ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);}
template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

ll ask(ll K)
{
  cout << "? " << K << endl;
  ll S;
  cin >> S;
  if (S == -1)
    exit(0);
  return 2 * S - K;
}

void ans(ll L, ll R)
{
  cout << "! " << L << " " << R << endl;
  exit(0);
}

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

  ll X = ask(1), Y = ask(N - 1);
  if (X == Y)
    ans(2, N - 1);

  ll ok = 1, ng = N - 1;
  if (X < 0)
    swap(ok, ng);
  
  while (abs(ok - ng) > 1)
  {
    ll mid = (ok + ng) / 2;
    ll Z = ask(mid);
    if (Z >= 0)
      ok = mid;
    else
      ng = mid;
  }

  if (ok >= N / 2)
    ans(1, ok);
  else
    ans(ok + 1, N);
}
0