답안 #1006818

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1006818 2024-06-24T09:05:04 Z NeroZein 가장 긴 여행 (IOI23_longesttrip) C++17
컴파일 오류
0 ms 0 KB
#include "longesttrip.h"
#include <bits/stdc++.h>

using namespace std; 

vector<int> longest_trip(int N, int D) {
  vector<int> ord(n);
  iota(ord.begin(), ord.end(), 0);
  return {ord};
}

Compilation message

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:7:19: error: 'n' was not declared in this scope
    7 |   vector<int> ord(n);
      |                   ^