답안 #531549

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
531549 2022-03-01T03:50:20 Z andecaandeci 사육제 (CEOI14_carnival) C++17
0 / 100
1 ms 200 KB
#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.find({x, y}) != mp.end())
  {
    return mp[{x, y}];
  }
  cout << "2 " << x << " " << y << endl;
  int z;
  cin >> z;
  mp[{x, y}] = z;
  return 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 ";
  for(int i=0;i<n;i++) cout << a[i] << " "; cout << endl;
}

Compilation message

carnival.cpp: In function 'int main()':
carnival.cpp:36:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   36 |   for(int i=0;i<n;i++) cout << a[i] << " "; cout << endl;
      |   ^~~
carnival.cpp:36:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   36 |   for(int i=0;i<n;i++) cout << a[i] << " "; cout << endl;
      |                                             ^~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -