# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
912969 | 2024-01-20T04:53:34 Z | vjudge1 | Mouse (info1cup19_mouse) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; int ask(const vector<int> &q) { int x = query(q); if (x == n) { // cout << queries << '\n'; exit(0); } return x; } void solve(int n) { vector<int> a(n); iota(a.begin(), a.end(), 1); do { ask(a); } while (next_permutation(a.begin(), a.end())); }