제출 #1253977

#제출 시각아이디문제언어결과실행 시간메모리
1253977vpinx세계 지도 (IOI25_worldmap)C++20
컴파일 에러
0 ms0 KiB
#include <worldmap.h>
#include <bits/stdc++.h>
using namespace std;
#define int long long

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;
}

컴파일 시 표준 에러 (stderr) 메시지

worldmap.cpp:1:10: fatal error: worldmap.h: No such file or directory
    1 | #include <worldmap.h>
      |          ^~~~~~~~~~~~
compilation terminated.