답안 #842486

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
842486 2023-09-03T00:29:50 Z CodePlatina 가장 긴 여행 (IOI23_longesttrip) C++17
컴파일 오류
0 ms 0 KB
#include "longesttrip.h"
#include <iostream>
#include <algorithm>
#define pii pair<int, int>
#define ff first
#define ss second
using namespace std;

vector<int> longest_trip(int N, int d)
{
    bool chc[N]{};
    vector<pii> V;
    for(int i = 0; i < N; ++i)
    {
        for(int j = i + 1; j < N; ++j)
        {
            if(!are_connected(vector<int>{i}, vector<int>{j}))
                chc[i] = true, chc[j] = true, V.push_back({i, j});
        }
    }

    vector<int> ret;
    for(auto [x, y] : V) ret.push_back(x);
    for(int i = 0; i < N; ++i) if(!chc[i]) ret.push_back(x);
    for(auto [x, y] : V) ret.push_back(y);
    return ret;
}

Compilation message

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:24:58: error: 'x' was not declared in this scope
   24 |     for(int i = 0; i < N; ++i) if(!chc[i]) ret.push_back(x);
      |                                                          ^