# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1067773 | 2024-08-21T03:03:46 Z | sleepntsheep | Wombats (IOI13_wombats) | C++17 | 0 ms | 0 KB |
#include "wombats.h" #include <vector> using namespace std; template <typename T> using ve = vector<T>; int r, c, at[9999]; int sum = 0; void changeH(int P, int Q, int W) { /* ... */ } void changeV(int P, int Q, int W) { if (c == 1) { sum += W - at[P]; at[P] = W; } /* ... */ } void init(int R, int C, int H[5000][200], int V[5000][200]) { r = R, c = C; for (int i = 0; i < r; ++i) changeV(V[i][0]); } int escape(int V1, int V2) { return sum; }