답안 #984744

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
984744 2024-05-17T04:25:27 Z Uultan12 순열 (APIO22_perm) C++17
컴파일 오류
0 ms 0 KB
#include <random>

std::vector<int> construct_permutation(long long k) {
    std::vector<int> permutation(k);
    for (int i = 0; i < k; ++i) {
        permutation[i] = i;
    }
    std::shuffle(permutation.begin(), permutation.end(), std::mt19937(std::random_device()()));
    return permutation;
}

Compilation message

perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:8:10: error: 'shuffle' is not a member of 'std'
    8 |     std::shuffle(permutation.begin(), permutation.end(), std::mt19937(std::random_device()()));
      |          ^~~~~~~