제출 #1218293

#제출 시각아이디문제언어결과실행 시간메모리
1218293ProtonDecay314상형문자열 (IOI24_hieroglyphs)C++20
컴파일 에러
0 ms0 KiB
#include "heiroglyphs.h" #include <bits/stdc++.h> using namespace std; typedef vector<int> vi; bool eq(vi a, vi b) { int as = a.size, bs = b.size(); if(as != bs) return false; for(int i = 0; i < as; i++) { if(a[i]!=b[i]) return false; } return true; } vi ucs(vi a, vi b) { if(eq(a, b)) return a; vi empty; return empty; }

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

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