# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1218293 | ProtonDecay314 | Hieroglyphs (IOI24_hieroglyphs) | C++20 | 0 ms | 0 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;
}