結果
問題 | No.1830 Balanced Majority |
ユーザー | tabae326 |
提出日時 | 2022-02-04 22:25:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,287 bytes |
コンパイル時間 | 4,352 ms |
コンパイル使用メモリ | 261,496 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 13.42 |
最終ジャッジ日時 | 2024-06-11 12:04:43 |
合計ジャッジ時間 | 6,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 24 ms
25,208 KB |
testcase_02 | AC | 25 ms
24,824 KB |
testcase_03 | AC | 23 ms
25,208 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 24 ms
24,952 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 25 ms
25,220 KB |
testcase_12 | AC | 24 ms
25,220 KB |
testcase_13 | AC | 26 ms
24,964 KB |
testcase_14 | AC | 26 ms
25,220 KB |
testcase_15 | AC | 27 ms
24,836 KB |
testcase_16 | AC | 26 ms
25,604 KB |
testcase_17 | AC | 27 ms
25,220 KB |
testcase_18 | AC | 25 ms
25,220 KB |
testcase_19 | AC | 24 ms
25,348 KB |
testcase_20 | AC | 24 ms
25,220 KB |
testcase_21 | AC | 25 ms
25,348 KB |
testcase_22 | AC | 26 ms
25,220 KB |
testcase_23 | AC | 27 ms
25,220 KB |
testcase_24 | AC | 27 ms
25,220 KB |
testcase_25 | AC | 24 ms
25,208 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using pl = std::pair<long long, long long>; using mint = atcoder::modint1000000007; //using mint = atcoder::modint998244353; #define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++) #define all(v) (v).begin(), (v).end() #define dump(var) do{ if(debug::enable) { std::cerr << #var << " : "; debug::print(var); } } while(0); constexpr int di[4] = {1, -1, 0, 0}; constexpr int dj[4] = {0, 0, 1, -1}; constexpr long long inf = 1LL<<60; template<typename T> inline void chmax(T &a, T b) { a = std::max(a, b); }; template<typename T> inline void chmin(T &a, T b) { a = std::min(a, b); }; template<typename T> void vprint(const std::vector<T>& v) { for(int i = 0; i < v.size(); i++) { std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); } } template<typename T> void vprintln(const std::vector<T>& v) { for(int i = 0; i < v.size(); i++) { std::cout << v[i] << "\n"; } } template<int M> void vprint(const std::vector<atcoder::static_modint<M>>& v) { for(int i = 0; i < v.size(); i++) { std::cout << v[i].val() << (i == v.size()-1 ? "\n" : " "); } } template<int M> void vprintln(const std::vector<atcoder::static_modint<M>>& v) { for(int i = 0; i < v.size(); i++) { std::cout << v[i].val() << "\n"; } } namespace debug { #if defined(ONLINE_JUDGE) const bool enable = false; #else const bool enable = true; #endif template<typename T> void push(const T& e) { std::cerr << e; } template<int M> void push(const atcoder::static_modint<M>& e) { std::cerr << e.val(); } template<typename T1, typename T2> void push(const std::pair<T1, T2>& e) { std::cerr << "("; push(e.first); std::cerr << ","; push(e.second); std::cerr << ")"; } template<typename T1, typename T2, typename T3> void push(const std::tuple<T1, T2, T3>& e) { std::cerr << "("; push(get<0>(e)); std::cerr << ","; push(get<1>(e)); std::cerr << ","; push(get<2>(e)); std::cerr << ")"; } template<typename T> void print(const T& e) { push(e); std::cerr << "\n"; } template<typename T> void print(const std::vector<T>& v) { for(int i = 0; i < v.size(); i++) { push(v[i]); std::cerr << " "; } std::cerr << "\n"; } template<typename T> void print(const std::vector<std::vector<T>>& v) { std::cerr << "\n"; for(int i = 0; i < v.size(); i++) { std::cerr << i << ": "; print(v[i]); } } }; ll query(ll k) { cout << "? " << k << endl << flush; ll res; cin >> res; ll plus = res, neg = k - res; return plus - neg; } void answer(ll l, ll r) { cout << "! " << l << " " << r << endl << flush; } void solve() { ll n; cin >> n; ll l = 1, r = n; ll vl = query(l); ll vr = query(r); if(vl == vr) { answer(l, r); return; } while(r - l > 1) { ll m = (l + r) / 2; ll vm = query(m); if(vm == 0) { if(m >= n / 2) answer(1, m); else answer(m+1, n); return; } if(vl < 0) { if(vm < 0) l = m; else r = m; } else { if(vm > 0) l = m; else r = m; } } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); solve(); return 0; }