제출 #531552

#제출 시각아이디문제언어결과실행 시간메모리
531552makanhulia사육제 (CEOI14_carnival)C++17
0 / 100
1 ms292 KiB
#include <bits/stdc++.h> using namespace std; int a[151], n; map<pair<int,int>, int> mp; int ask(int x, int y){ if(x > y) swap(x, y); if(mp.count({x, y})) { return mp[{x, y}]; } cout << "2 " << x << " " << y << endl; int z; cin >> z; return mp[{x, y}] = z; } int main(){ // cin.tie(0) -> ios_base::sync_with_stdio(0); cin >> n; iota(a, a + n, 1); for(int i=0;i<n;i++) { for(int j=0;j<i;j++) { if(ask(a[i], a[j]) == 1) { a[i] = a[j]; } } } cout << "0 " << flush; for(int i=0;i<n;i++) cout << a[i] << " "; cout << endl; return 0; }

컴파일 시 표준 에러 (stderr) 메시지

carnival.cpp: In function 'int main()':
carnival.cpp:35:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   35 |   for(int i=0;i<n;i++) cout << a[i] << " "; cout << endl;
      |   ^~~
carnival.cpp:35:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   35 |   for(int i=0;i<n;i++) cout << a[i] << " "; cout << endl;
      |                                             ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...