제출 #984744

#제출 시각아이디문제언어결과실행 시간메모리
984744Uultan12순열 (APIO22_perm)C++17
컴파일 에러
0 ms0 KiB
#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; }

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

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()()));
      |          ^~~~~~~