제출 #294914

#제출 시각아이디문제언어결과실행 시간메모리
294914ASDF123Arranging Shoes (IOI19_shoes)C++17
컴파일 에러
0 ms0 KiB
#include "shoes.h" #include <bits/stdc++.h> #define ll long long #define szof(s) (int)s.size() using namespace std; const int N = (int)2e5 + 5; ll count_swaps(vector<int> s) { ll ans = 0; int n = szof(s) / 2; for (int i = 0; i < n * 2; i += 2) { int pos = -1; for (int j = i + 1; j < n * 2; j++) { if (s[j] == -s[i]) { pos = j; break; } } while (pos > i + 1) { swap(s[pos], s[pos - 1]); pos--; ans++; } if (s[pos] < 0) { swap(s[pos], s[pos - 1]); ans++; } } return ans; } //signed main() { }

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

shoes.cpp:37:1: error: expected declaration before '}' token
   37 | }
      | ^