# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1253981 | vpinx | World Map (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;
}