제출 #1121942

#제출 시각아이디문제언어결과실행 시간메모리
1121942vjudge1Calvinball championship (CEOI15_teams)C++17
컴파일 에러
0 ms0 KiB
#include "messy.h" #include <bits/stdc++.h> using namespace std; std::vector<int> restore_permutation(int n, int w, int r) { vector < string > s; for(int i = 0;i < n - 1;i++) { string q = ""; for(int j = 0;j <= i;j++) q = q + '0'; for(int j = i + 1;j < n;j++) q = q + '1'; s.push_back(q); add_element(q); } compile_set(); for(int i = 0;i < n;i++) for(int j = i;j < n;j++){ bool f = 1; for(int p = 0;p < n - 1;p++){ string q = s[p]; swap(q[i] , q[j]); f &= check_element(q); } if(f){ vector < int > ans(n); for(int p = 0;p < n;p++) ans[p] = p; swap(ans[i] , ans[j]); return ans; } } }

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

teams.cpp:1:10: fatal error: messy.h: No such file or directory
    1 | #include "messy.h"
      |          ^~~~~~~~~
compilation terminated.