結果
問題 | No.850 企業コンテスト2位 |
ユーザー | omochana2 |
提出日時 | 2019-03-27 17:44:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,346 bytes |
コンパイル時間 | 1,398 ms |
コンパイル使用メモリ | 163,188 KB |
実行使用メモリ | 27,648 KB |
平均クエリ数 | 307.18 |
最終ジャッジ日時 | 2024-07-16 16:45:25 |
合計ジャッジ時間 | 5,610 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
26,712 KB |
testcase_01 | AC | 26 ms
26,968 KB |
testcase_02 | AC | 27 ms
26,712 KB |
testcase_03 | AC | 25 ms
27,096 KB |
testcase_04 | AC | 27 ms
26,584 KB |
testcase_05 | AC | 26 ms
26,840 KB |
testcase_06 | AC | 25 ms
27,224 KB |
testcase_07 | AC | 30 ms
27,224 KB |
testcase_08 | AC | 34 ms
27,224 KB |
testcase_09 | AC | 33 ms
26,840 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 36 ms
26,712 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 38 ms
26,968 KB |
testcase_19 | WA | - |
testcase_20 | AC | 35 ms
27,224 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 29 ms
27,080 KB |
ソースコード
#include <bits/stdc++.h> #define ADD(a, b) a = (a + ll(b)) % mod #define MUL(a, b) a = (a * ll(b)) % mod #define MAX(a, b) a = max(a, b) #define MIN(a, b) a = min(a, b) #define rep(i, a, b) for(int i = int(a); i < int(b); i++) #define rer(i, a, b) for(int i = int(a) - 1; i >= int(b); i--) #define all(a) (a).begin(), (a).end() #define sz(v) (int)(v).size() #define pb push_back #define sec second #define fst first #define debug(fmt, ...) Debug(__LINE__, ":", fmt, ##__VA_ARGS__) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pi; typedef pair<ll, ll> pl; typedef pair<int, pi> ppi; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<vl> mat; typedef complex<double> comp; void Debug() {cout << '\n'; } template<class FIRST, class... REST>void Debug(FIRST arg, REST... rest){ cout<<arg<<" ";Debug(rest...);} template<class T>ostream& operator<<(ostream& out,const vector<T>& v) { out<<"[";if(!v.empty()){rep(i,0,sz(v)-1)out<<v[i]<<", ";out<<v.back();}out<<"]";return out;} template<class S, class T>ostream& operator<<(ostream& out,const pair<S, T>& v){ out<<"("<<v.first<<", "<<v.second<<")";return out;} const int MAX_N = 300010; const int MAX_V = 100010; const double eps = 1e-6; const ll mod = 1000000007; const int inf = 1 << 30; const ll linf = 1LL << 60; const double PI = 3.14159265358979323846; /////////////////////////////////////////////////////////////////////////////////////////////////// //いい感じに通らないコードを書きたい。 int N; vector<int> vec; vector<int> G[MAX_N]; void solve() { cin >> N; vector<int> cand; int front = rand() % N; vector<int> vec; rep(i, 0, N) { if(front == i) continue; vec.pb(i); } while(!vec.empty()) { int n = sz(vec); int b = vec[rand() % n]; cout << "? " << front + 1 << " " << b + 1 << "\n"; int c; cin >> c; c--; if(c == front) cand.pb(b); else { cand.clear(); cand.pb(front); front = b; } vector<int> nvec; rep(i, 0, sz(vec)) { if(vec[i] == b) continue; nvec.pb(vec[i]); } vec = nvec; // debug(vec, front, cand); } int s = cand[0]; cerr << sz(cand) << endl; rep(i, 1, sz(cand)) { int a = cand[i]; cout << "? " << s + 1 << " " << a + 1 << "\n"; int c; cin >> c; c--; if(c == a) s = a; } cout << "! " << s + 1 << "\n"; } int main() { solve(); }