제출 #1253981

#제출 시각아이디문제언어결과실행 시간메모리
1253981vpinxWorld Map (IOI25_worldmap)C++20
컴파일 에러
0 ms0 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; }

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

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