Submission #1003774

#TimeUsernameProblemLanguageResultExecution timeMemory
1003774vjudge1Zagrade (COI20_zagrade)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int query( int a, int b ){ cout << "? " << a << " " << b << endl; int x; cin >> x; return x; } int main(){ int n, q; cin >> n >> q; stack<int> pilha; vector<int> resp(n + 1); for( int i = 1; i <= n; i++ ){ if( pilha.empty() ){ pilha.push(i); continue; } if( query( pilha.top(), i ) ){ resp[i] = -1; resp[pilha.top()] = 1; pilha.pop(); } else pilha.push(i); } int tam = pilha.size()/2; while(tam--){ resp[pilha.top()] = 1; pilha.pop(); } while(!pilha.empty()){ resp[pilha.top()] = -1; pilha.pop(); } cout << "! " for( int i = 1; i <= n; i++ ) cout << (( resp[i] == 1 ) ? "(" : ")" ); cout << endl; }

Compilation message (stderr)

zagrade.cpp: In function 'int main()':
zagrade.cpp:28:15: error: expected ';' before 'for'
   28 |   cout << "! "
      |               ^
      |               ;
   29 |   for( int i = 1; i <= n; i++ ) cout << (( resp[i] == 1 ) ? "(" : ")" ); cout << endl;
      |   ~~~          
zagrade.cpp:29:19: error: 'i' was not declared in this scope
   29 |   for( int i = 1; i <= n; i++ ) cout << (( resp[i] == 1 ) ? "(" : ")" ); cout << endl;
      |                   ^