이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "koala.h"
#include <bits/stdc++.h>
using namespace std;
const int mxn = 110;
int ask[mxn],res[mxn];
int N,W;
void play(int* a,int* b){
cerr<<"ASK:"<<endl;for(int i = 0;i<N;i++)cerr<<a[i]<<(i%10 == 9?"\n":" ");cerr<<endl;
playRound(a,b);
cerr<<"RES:"<<endl;for(int i = 0;i<N;i++)cerr<<b[i]<<(i%10 == 9?"\n":" ");cerr<<endl;
}
namespace S1{
int GO(){
memset(ask,0,sizeof(ask));
ask[0] = 1;
play(ask,res);
if(res[0] == 2){
for(int i = 1;i<N;i++)if(!res[i])return i;
assert(false);
}
else return 0;
memset(ask,0,sizeof(ask));
ask[1] = 1;
play(ask,res);
for(int i = 2;i<N;i++)if(!res[i])return i;
assert(false);
return -1;
}
}
int minValue(int NN, int WW) {
// TODO: Implement Subtask 1 solution here.
// You may leave this function unmodified if you are not attempting this
// subtask.
N = NN,W = WW;
return S1::GO();
}
namespace S2{
int GO(){
for(int i = 0;i<N;i++)ask[i] = 1;
play(ask,res);
int big = N/2;
while(big>1){
int cnt = 0;
for(int i = 0;i<N;i++)if(res[i]==1)cnt++,res[i] = 0;
while(cnt){
for(int i = 0;i<N&&cnt;i++){
if(res[i])res[i]++,cnt--;
}
}
play(res,res);
big = 0;
for(int i = 0;i<N;i++)big += res[i]>1;
}
for(int i = 0;i<N;i++)if(res[i]>1)return i;
assert(false);
}
}
int maxValue(int NN, int WW) {
// TODO: Implement Subtask 2 solution here.
// You may leave this function unmodified if you are not attempting this
// subtask.
N = NN,W = WW;
return S2::GO();
}
int greaterValue(int N, int W) {
// TODO: Implement Subtask 3 solution here.
// You may leave this function unmodified if you are not attempting this
// subtask.
return 0;
}
void allValues(int N, int W, int *P) {
if (W == 2*N) {
// TODO: Implement Subtask 4 solution here.
// You may leave this block unmodified if you are not attempting this
// subtask.
} else {
// TODO: Implement Subtask 5 solution here.
// You may leave this block unmodified if you are not attempting this
// subtask.
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |