답안 #254795

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
254795 2020-07-30T15:31:04 Z MKopchev 최후의 만찬 (IOI12_supper) C++14
0 / 100
61 ms 43504 KB
#include "advisor.h"
#include<bits/stdc++.h>
using namespace std;

const int nmax=2e5+42;

int pointer=0;
unsigned char ad[nmax];

int seen[nmax];

int nxt_seen[nmax];

set< pair<int/*seen next*/,int/*id*/> > s;

int when_pushed[nmax];


set<int> cut_moment[nmax];

vector<int> there[nmax];

int check_next_moment(int pos,int after)
{
    if(there[pos].size()==0)return 0;

    int p=upper_bound(there[pos].begin(),there[pos].end(),after)-there[pos].begin();

    if(p==there[pos].size())return 0;

    if(cut_moment[pos].count(there[pos][p]))return 0;

    return 1;
}
void ComputeAdvice(int *C,int N,int K,int M)
{
	for(int i=0;i<N;i++)
        seen[i]=N;

    for(int i=N-1;i>=0;i--)
    {
        nxt_seen[i]=seen[C[i]];
        seen[C[i]]=i;
    }

    for(int i=0;i<K;i++)
        s.insert({nxt_seen[i],i});

    for(int i=0;i<K;i++)
        if(s.count({i,C[i]}))
        {
            s.erase({i,C[i]});
            s.insert({nxt_seen[i],C[i]});
        }
        else
        {
            //cut the furthest
            set< pair<int/*seen next*/,int/*id*/> >::iterator it=s.end();
            it--;

            int which=(*it).second;

            cut_moment[which].insert(i);

            when_pushed[C[i]]=i;

            s.erase(it);

            s.insert({nxt_seen[i],C[i]});
        }

    for(int i=0;i<N;i++)
        there[C[i]].push_back(i);

    for(int i=0;i<K;i++)
        WriteAdvice(check_next_moment(i,-1)+'0');

    for(int i=0;i<N;i++)
        WriteAdvice(check_next_moment(C[i],i)+'0');
}

#include "assistant.h"
#include<bits/stdc++.h>
using namespace std;

const int nmax=2e5+42;

set<int> active,passive;

void Assist(unsigned char *A, int N, int K, int R)
{
    for(int i=0;i<K;i++)
        if(A[i]=='1')active.insert(i);
        else passive.insert(i);

    for(int i=K;i<N+K;i++)
    {
        int cur=GetRequest();

        if(active.count(cur))
        {
            active.erase(cur);
        }
        else
        {
            int tp=*passive.begin();
            passive.erase(tp);
            PutBack(tp);
        }

        if(A[i]=='1')active.insert(cur);
        else passive.insert(cur);
    }
}

Compilation message

advisor.cpp: In function 'int check_next_moment(int, int)':
advisor.cpp:29:9: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if(p==there[pos].size())return 0;
        ~^~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 28928 KB Error - advice must be 0 or 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 13 ms 29952 KB Error - advice must be 0 or 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 40 ms 38912 KB Error - advice must be 0 or 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 29440 KB Error - advice must be 0 or 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 46 ms 40688 KB Error - advice must be 0 or 1
2 Incorrect 54 ms 40944 KB Error - advice must be 0 or 1
3 Incorrect 51 ms 41456 KB Error - advice must be 0 or 1
4 Incorrect 51 ms 41456 KB Error - advice must be 0 or 1
5 Incorrect 55 ms 41456 KB Error - advice must be 0 or 1
6 Incorrect 61 ms 41712 KB Error - advice must be 0 or 1
7 Incorrect 49 ms 41712 KB Error - advice must be 0 or 1
8 Incorrect 51 ms 41712 KB Error - advice must be 0 or 1
9 Incorrect 60 ms 41456 KB Error - advice must be 0 or 1
10 Incorrect 51 ms 43504 KB Error - advice must be 0 or 1