제출 #480933

#제출 시각아이디문제언어결과실행 시간메모리
480933saarthakBest Place (NOI17_bestplace)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define io ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define PB push_back #define RS resize #define MP make_pair #define F first #define S second #define B begin() #define E end() #define REP(i, a, b) for(int i = a; i <= b; i++) #define ITR(i, n) for(int i = 0; i < n; i++) #define M 1000000007 typedef int_fast32_t fint; typedef int_fast64_t fint64; typedef vector<fint> vi; typedef vector<vector<fint>> vvi; typedef pair<fint, fint> pi; typedef vector<pair<fint, fint>> vpi; typedef map<fint, fint> imap; typedef long long ll; void solve() { fint n; cin >> n; vi x(n), y(n); ITR(i, n) { cin >> x[i] >> y[i]; sort(x.B, x.E); sort(y.B, y.E); cout << x[n/2] << " " << y[n/2] << "\n"; } int main() { io solve(); return 0; }

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

bestplace.cpp: In function 'void solve()':
bestplace.cpp:37:12: error: a function-definition is not allowed here before '{' token
   37 | int main() {
      |            ^
bestplace.cpp:43:1: error: expected '}' at end of input
   43 | }
      | ^
bestplace.cpp:26:14: note: to match this '{'
   26 | void solve() {
      |              ^