/* * author: pavveu */ #include #include using namespace std; using ll = long long; using vi = vector; using vll = vector; using pii = pair; using graph = vector; #define FOR(name__, upper__) for (int name__ = 0; name__ < (upper__); ++name__) #define all(x) begin(x), end(x) #define mp make_pair #define mt make_tuple template void initialize_matrix(vector>& matrix, int rows, int cols, T value) { assert(matrix.empty()); FOR (row, rows) matrix.emplace_back(cols, value); } void go() { } int main() { ios::sync_with_stdio(false); cin.tie(0); go(); return 0; }