# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
484643 | AmirElarbi | 버섯 세기 (IOI20_mushrooms) | C++14 | 2 ms | 300 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
#define vi vector<int>
#define ve vector
#define ll long long
#define vf vector<float>
#define vll vector<pair<ll,ll>>
#define ii pair<int,int>
#define vvi vector<vi>
#define vii vector<ii>
#define gii greater<ii>
#define pb push_back
#define fi first
#define se second
#define INF 1e7
#define eps 1e-18
#define eps1 1e-25
#define optimise ios_base::sync_with_stdio(false);cin.tie(NULL);
#define MAX_A 1e5+5
#define V 450
using namespace std;
const int MOD = 1e9+7;
const int nax = 2000005;
int count_mushrooms(int n) {
int X = 199;
vi typ[2];
for(int i = 1; i <= min(n-1,X); i++){
typ[use_machine({0,i})].pb(i);
}
int cnt = typ[0].size()+1;
for (int i = 200; i < n; i+=200)
{
vi a;
for(int j = i; j < i+typ[0].size();j++){
a.pb(typ[0][j-i]);
a.pb(j);
}
int res = use_machine(a);
cnt += typ[0].size()-((res+1)/2);
a.clear();
for(int j = i+typ[0].size(); j < i+200;j++){
a.pb(j-i+typ[0].size());
a.pb(j);
}
res = use_machine(a);
cnt += ((res+1)/2);
}
return cnt;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |