# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335394 | rocks03 | 버섯 세기 (IOI20_mushrooms) | C++14 | 2 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define ff first
#define ss second
#define pb push_back
#define SZ(x) ((int)(x).size())
#define all(x) x.begin(), x.end()
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int use_machine(vector<int> x);
int count_mushrooms(int n){
vector<int> a, b;
a.pb(0);
int ans = 1;
for(int i = 1; i < n; i++){
if(SZ(a) == 100){
i++;
for(; i < n; i++){
vector<int> v;
int j = i;
while(j < n && j < i + 100){
v.pb(a[j - i]);
v.pb(j);
j++;
}
int res = use_machine(v);
ans += SZ(a) - (res + 1) / 2;
i = j - 1;
}
break;
}
if(SZ(b) == 100){
for(; i < n; i++){
vector<int> v;
int j = i;
while(j < n && j < i + 100){
v.pb(b[j - i]);
v.pb(j);
j++;
}
int res = use_machine(v);
ans += (res + 1) / 2;
i = j - 1;
}
break;
}
int res = use_machine({0, i});
if(res == 1){
b.pb(i);
} else{
a.pb(i);
++ans;
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |