답안 #670945

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
670945 2022-12-11T12:58:50 Z jovian_aap 사육제 (CEOI14_carnival) C++17
0 / 100
4 ms 300 KB
#include <bits/stdc++.h>
#define int long long
using namespace std;

const int maxx = 1e9+900;

bool flag(int x, int y, int z) {
    cout << y - x + 1 << ' ';
    for (int i = x; i < y; ++i) {
        cout << i + 1 << ' ';
    }
    cout << z + 1 << endl;
    int h1;
    cin >> h1;

    cout << y - x << ' ';
    for (int i = x; i < y; ++i) {
        cout << i + 1 << ' ';
    }
    int h2;
    cin >> h2;

    return (h1 == h2);
}

int valueof(int x, int y, int z) {
    if (flag(x, y, z)) {
        return maxx;
    }
    while (y - 1 > 1) {
        int m = (x + y)/2;
        if (flag(x, m, z)) {
            y = m;
        } else {
            x = m;
        }
    }
    return x;
}

vector<int> solve(int n) {
    int v = 2;
    vector<int> ans;
    ans.push_back(1);
    for (int i = 1; i < n; ++i) {
        int j = valueof(0, i, i);
        if (j == maxx) {
            ans.push_back(v);
            v++;
        } else {
            ans.push_back(ans[j]);
        }
    }
    return ans;
}
int32_t main() {
    int n;
    cin >> n;
    vector<int> ans = solve(n);
    cout << 0 << ' ';
    for (int i = 0; i < n; ++i) {
        cout << ans[i] << ' ';
    }
    cout << endl;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 288 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 208 KB Integer 2 violates the range [1, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 208 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 300 KB Integer 3 violates the range [1, 2]
2 Halted 0 ms 0 KB -