제출 #315641

#제출 시각아이디문제언어결과실행 시간메모리
315641SortingCounting Mushrooms (IOI20_mushrooms)C++17
25 / 100
125 ms384 KiB
#include "mushrooms.h"
#include <bits/stdc++.h>

using namespace std;

int count_mushrooms(int n) {
	int cnt = 1;
    for(int i = 1; i < n; i += 2){
        vector<int> v{i, 0};
        if(i != n - 1) v.push_back(i + 1);
        cnt += v.size() - 1 - use_machine(v); 
    }
	return cnt;
}
#Verdict Execution timeMemoryGrader output
Fetching results...