Submission #272085

# Submission time Handle Problem Language Result Execution time Memory
272085 2020-08-18T08:48:28 Z 반딧불(#5113) Last supper (IOI12_supper) C++14
8 / 100
513 ms 28128 KB
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include "advisor.h"

using namespace std;
using namespace __gnu_pbds;

typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> idx_set;

namespace{
    int n, k, m, b;
    int arr[100002];
    int ans[100002];

    bool chk[100002];
    priority_queue<pair<int, int> > pq;
    vector<int> times[100002];

    idx_set st;
}

void ComputeAdvice(int *ARR, int N, int K, int M){
    n = N, k = K, m = M;
    if(n<=5000) b=13; else if(k<=25000) b=15; else b=17;
    for(int i=0; i<n; i++){
        arr[i] = ARR[i];
        times[arr[i]].push_back(i);
    }
    for(int i=0; i<n; i++) times[i].push_back(1e9);
    for(int i=0; i<n; i++){
        reverse(times[i].begin(), times[i].end());
        if(i<k) pq.push({times[i].back(), i}), st.insert(i);
    }

    for(int i=0; i<k; i++) chk[i] = 1;
    for(int i=0; i<n; i++){
        times[arr[i]].pop_back();
        if(chk[arr[i]]){
            ans[i] = n;
            pq.push({times[arr[i]].back(), arr[i]});
            continue;
        }

        pair<int, int> tmp = pq.top(); pq.pop();
        ans[i] = st.order_of_key(tmp.second);
        st.erase(tmp.second);
        st.insert(arr[i]);
        chk[tmp.second] = 0;
        pq.push({times[arr[i]].back(), arr[i]});
        chk[arr[i]] = 1;
    }

    for(int i=0; i<n; i++){
        for(int j=0; j<b; j++){
            WriteAdvice(!!(ans[i] & (1<<j)));
        }
    }
}
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include "assistant.h"

using namespace std;
using namespace __gnu_pbds;

typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> idx_set;

namespace{
    int n, k, l, b;
    int arr[2000002];
    idx_set st;
}

void Assist(unsigned char *ARR, int N, int K, int R) {
    n = N, k = K, l = R;
    if(n<=5000) b=13; else if(k<=25000) b=15; else b=17;
    for(int i=0; i<R; i++) arr[i] = ARR[i];

    for(int i=0; i<k; i++){
        st.insert(i);
    }

    for(int i=0; i<n; i++){
        int tpt = GetRequest();
        int tmp = 0;
        for(int j=0; j<b; j++){
            tmp += (1<<j) * arr[i*b+j];
        }

        if(tmp != n){
            int tx = *st.find_by_order(tmp);
            PutBack(tx);
            st.erase(tx);
            st.insert(tpt);
        }
    }
}
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5376 KB Output is correct
2 Correct 3 ms 5376 KB Output is correct
3 Correct 6 ms 5632 KB Output is correct
4 Correct 15 ms 5888 KB Output is correct
5 Correct 20 ms 6144 KB Output is correct
6 Correct 22 ms 6144 KB Output is correct
7 Correct 20 ms 6400 KB Output is correct
8 Correct 22 ms 6400 KB Output is correct
9 Correct 24 ms 6400 KB Output is correct
10 Correct 25 ms 6656 KB Output is correct
11 Correct 23 ms 6400 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 54 ms 7664 KB Output is correct
2 Incorrect 223 ms 16496 KB Error - Putting back a color when it is already on the scaffold
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 403 ms 23264 KB Error - Putting back a color when it is already on the scaffold
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 5888 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 507 ms 27408 KB Error - Putting back a color when it is already on the scaffold
2 Incorrect 485 ms 27536 KB Error - Putting back a color when it is already on the scaffold
3 Incorrect 505 ms 27864 KB Error - Putting back a color when it is already on the scaffold
4 Incorrect 495 ms 28128 KB Error - Putting back a color when it is already on the scaffold
5 Incorrect 513 ms 28088 KB Error - Putting back a color when it is already on the scaffold
6 Incorrect 498 ms 27864 KB Error - Putting back a color when it is already on the scaffold
7 Incorrect 475 ms 27864 KB Error - Putting back a color when it is already on the scaffold
8 Incorrect 493 ms 28120 KB Error - Putting back a color when it is already on the scaffold
9 Incorrect 472 ms 27864 KB Error - Putting back a color when it is already on the scaffold
10 Incorrect 491 ms 27360 KB Error - Putting back a color when it is already on the scaffold