# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1253981 | vpinx | 세계 지도 (IOI25_worldmap) | C++20 | 0 ms | 0 KiB |
#include <worldmap.h>
#include <bits/stdc++.h>
using namespace std;
std::vector<std::vector<int>> create_map(int N, int M, std::vector<int> A, std::vector<int> B) {
vector<vector<int>> ans(1, vector<int>(N));
iota(ans[0].begin(), ans[0].end(), 1);
return ans;
}