#include <bits/stdc++.h>
using namespace std;
#include "grader.h"
void solve(int n){
mt19937 rng(177013);
int perm[n];
for(int i=0; i<n; i++) perm[i]=i;
while(true){
vector<int> v;
for(int i=0; i<n; i++) v.push_back(perm[i]);
int x=query(v);
if(x==n) return;
shuffle(perm,perm+n,rng);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
344 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
344 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
344 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |