Submission #401519

#TimeUsernameProblemLanguageResultExecution timeMemory
401519_DaNeK_Combo (IOI18_combo)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; #define pb push_back #define fi first #define se second #define bust ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); const ll INF = INT_MAX; const int mod = 1e9 + 7; const int N = 1e3 + 10; const ld eps = 1e-5; char m[4] = {'A', 'B', 'Y', 'X'}; int press(string p) { cout << p << "\n"; int a; cin >> a; return a; } string guess_sequence(int N) { string res = ""; int cur = 0, i = 0, first = 0; while (i < 3 && press(res + m[i]) != cur + 1) ++i; res += m[i]; first = i; cur = 1; while (res.size() < (unsigned int ) N) { int ind = 0, cnt = 0; bool f = true; while (cnt < 2 && f) { if (ind == first) continue ; if (press(res + m[ind]) == cur + 1) f = false; if (f) { ++cnt; ++ind; } } if (ind == first) ++ind; ++cur; res += m[ind]; } return res; } int main() { /*int t = 1; //cin >> t; //scanf("%d", &t); while (t--) solve();*/ int N; cin >> N; cout << guess_sequence(N) << "\n"; return 0; }

Compilation message (stderr)

/usr/bin/ld: /tmp/ccyGtIec.o: in function `press(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
grader.cpp:(.text+0x0): multiple definition of `press(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)'; /tmp/ccdEcenc.o:combo.cpp:(.text+0xc0): first defined here
/usr/bin/ld: /tmp/ccyGtIec.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccdEcenc.o:combo.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status