제출 #418724

#제출 시각아이디문제언어결과실행 시간메모리
418724peuch자리 배치 (IOI18_seats)C++17
컴파일 에러
0 ms0 KiB
#include "combo.h" #include<bits/stdc++.h> using namespace std; string guess_sequence(int N) { string ord[4] = {"A", "B", "X", "Y"}; srand(time(0)); random_shuffle(ord, ord + 4); for(int i = 3; i > 0; i--){ if(press(ord[i]) == 0) continue; swap(ord[i], ord[0]); break; } string ans = ord[0]; random_shuffle(ord + 1, ord + 4); for(int i = 2; i < N; i++){ string guess = ans + ord[1]; guess = guess + ans + ord[2] + ord[1]; guess = guess + ans + ord[2] + ord[2]; guess = guess + ans + ord[2] + ord[3]; int cnt = press(guess); if(cnt == i) ans = ans + ord[1]; else if(cnt == i + 1) ans = ans + ord[2]; else ans = ans + ord[3]; } if(press(ans + ord[1]) == N) return ans + ord[1]; if(press(ans + ord[2]) == N) return ans + ord[2]; return ans + ord[3]; }

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

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