Submission #1218293

#TimeUsernameProblemLanguageResultExecution timeMemory
1218293ProtonDecay314Hieroglyphs (IOI24_hieroglyphs)C++20
Compilation error
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; }

Compilation message (stderr)

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