# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
975528 | De3b0o | 코알라 (APIO17_koala) | C++14 | 3 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "koala.h"
#include<bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define in insert
#define pb push_back
#define ppb pop_back()
#define d3 ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define cans cout << ans << "\n";
#define yes cout << "Yes" << "\n";
#define no cout << "No" << "\n";
#define pll pair<ll,ll>
#define lin cout << "\n";
#define sqr 340
#define mod 1000000007
#define mid ((l+r)/2)
#define lc (2*n)
#define rc (2*n+1)
using namespace std;
int minValue(int N, int W)
{
ll n = N;
int r[n];
int b[n] = {0};
b[0]++;
playRound(b,r);
ll ans;
for(int i = 0 ; n>i ; i++)
if(r[i]==0)
ans=i;
return ans;
}
int maxValue(int N, int W)
{
ll n = N;
ll ans;
vector<ll> v;
for(int i = 0 ; n>i ; i++)
v.pb(i);
while(true)
{
if(v.size()==1)
{
ans=v[0];
break;
}
int b[n] = {0};
int r[n];
for(auto it : v)
b[it]=1;
playRound(b,r);
v.clear();
for(int i = 0 ; n>i ; i++)
{
if(r[i]==2)
v.pb(i);
}
}
return ans;
}
int greaterValue(int N, int W)
{
}
void allValues(int N, int W, int *P)
{
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |