# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1253987 | vpinx | 세계 지도 (IOI25_worldmap) | C++20 | 0 ms | 0 KiB |
#include "worldmap.h"
#include <bits/stdc++.h>
using namespace std;
vector<vector<int>> create_map(int n, int m, vector<int> &a, vector<int> &b) {
vector<vector<int>> ans(1, vector<int>(n));
iota(ans[0].begin(), ans[0].end(), 1);
return ans;
}