답안 #1080645

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1080645 2024-08-29T11:50:18 Z Faisal_Saqib 버섯 세기 (IOI20_mushrooms) C++17
87.9377 / 100
9 ms 856 KB
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
mt19937 RNG(chrono::steady_clock::now().time_since_epoch().count());  
#define SHUFFLE(v) shuffle(begin(v),end(v), RNG); 
int count_mushrooms(int n) {
	std::vector<int> ind[2];
	ind[0].push_back(0);
	int sq=33;
	int rem_i=1;
	vector<int> order_fake;
	for(int j=1;j<n;j++)
		order_fake.push_back(j);
	SHUFFLE(order_fake);
	vector<int> order={0};
	for(auto j:order_fake)
		order.push_back(j);
	for(int i=1;i<n and max(ind[0].size(),ind[1].size())<sq;i++,rem_i++)
	{
		if(ind[0].size()>=2 and (i+1)<n)
		{
			int i0=order[i],i1=order[i+1];
			vector<int> query={ind[0][0],i0,ind[0][1],i1};
			int x=use_machine(query);
			if((x&1)==1)
			{
				ind[1].push_back(i1);
			}
			else
			{
				ind[0].push_back(i1);
			}
			if((x&2)==2)
			{
				ind[1].push_back(i0);
			}
			else
			{
				ind[0].push_back(i0);
			}
			i++;
			rem_i++;
		}
		else if(ind[1].size()>=2 and (i+1)<n)
		{
			int i0=order[i],i1=order[i+1];
			vector<int> query={ind[1][0],i0,ind[1][1],i1};
			int x=3-use_machine(query);
			if((x&1)==1)
			{
				ind[1].push_back(i1);
			}
			else
			{
				ind[0].push_back(i1);
			}
			if((x&2)==2)
			{
				ind[1].push_back(i0);
			}
			else
			{
				ind[0].push_back(i0);
			}
			i++;
			rem_i++;
		}
		else
		{			
			int i0=order[i];
			ind[0].push_back(i0);
			int x=use_machine(ind[0]);
			ind[0].pop_back();
			if(x==0)
			{
				ind[0].push_back(i0);
			}
			else
			{
				ind[1].push_back(i0);
			}
		}
	}
	int ans=ind[0].size();
	for(int i=rem_i;i<n;)
	{
		if(ind[0].size()>=ind[1].size())
		{
			vector<int> query;
			int rem=min(n-i,(int)ind[0].size());
			for(int j=0;j<rem;j++)
			{
				query.push_back(ind[0][j]);
				query.push_back(order[i+j]);
			}
			int x=use_machine(query);
			int ones=(x+1)/2;
			int zeros=rem-ones;
			ans+=zeros;
			if(zeros==0)
			{
				for(int j=1;j<query.size();j+=2)
				{
					ind[1].push_back(query[j]);
				}
			}
			else if(zeros==rem)
			{
				for(int j=1;j<query.size();j+=2)
				{
					ind[0].push_back(query[j]);
				}
			}
			else
			{
				if(x%2==0)
				{
					ind[0].push_back(order[i+rem-1]);
				}
				else
				{
					ind[1].push_back(order[i+rem-1]);
				}
			}
			i+=rem;
		}
		else
		{
			vector<int> query;
			int rem=min(n-i,(int)ind[1].size());
			for(int j=0;j<rem;j++)
			{
				query.push_back(ind[1][j]);
				query.push_back(order[i+j]);
			}
			int x=use_machine(query);
			int zeros=(x+1)/2;
			ans+=zeros;
			if(zeros==0)
			{
				for(int j=1;j<query.size();j+=2)
				{
					ind[1].push_back(query[j]);
				}
			}
			else if(zeros==rem)
			{
				for(int j=1;j<query.size();j+=2)
				{
					ind[0].push_back(query[j]);
				}
			}
			else
			{
				if(x%2==1)
				{
					ind[0].push_back(order[i+rem-1]);
				}
				else
				{
					ind[1].push_back(order[i+rem-1]);
				}
			}
			i+=rem;
		}
	}
	return ans;
}

Compilation message

mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:18:54: warning: comparison of integer expressions of different signedness: 'const long unsigned int' and 'int' [-Wsign-compare]
   18 |  for(int i=1;i<n and max(ind[0].size(),ind[1].size())<sq;i++,rem_i++)
      |                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
mushrooms.cpp:102:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  102 |     for(int j=1;j<query.size();j+=2)
      |                 ~^~~~~~~~~~~~~
mushrooms.cpp:109:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  109 |     for(int j=1;j<query.size();j+=2)
      |                 ~^~~~~~~~~~~~~
mushrooms.cpp:141:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  141 |     for(int j=1;j<query.size();j+=2)
      |                 ~^~~~~~~~~~~~~
mushrooms.cpp:148:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  148 |     for(int j=1;j<query.size();j+=2)
      |                 ~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Correct 0 ms 344 KB Output is correct
4 Correct 0 ms 344 KB Output is correct
5 Correct 0 ms 344 KB Output is correct
6 Correct 1 ms 344 KB Output is correct
7 Correct 4 ms 600 KB Output is correct
8 Correct 4 ms 600 KB Output is correct
9 Correct 4 ms 600 KB Output is correct
10 Correct 4 ms 748 KB Output is correct
11 Partially correct 4 ms 600 KB Output is partially correct
12 Partially correct 8 ms 736 KB Output is partially correct
13 Correct 4 ms 600 KB Output is correct
14 Correct 2 ms 588 KB Output is correct
15 Partially correct 7 ms 740 KB Output is partially correct
16 Partially correct 7 ms 596 KB Output is partially correct
17 Correct 3 ms 592 KB Output is correct
18 Correct 7 ms 600 KB Output is correct
19 Partially correct 5 ms 600 KB Output is partially correct
20 Correct 4 ms 600 KB Output is correct
21 Partially correct 7 ms 600 KB Output is partially correct
22 Partially correct 5 ms 744 KB Output is partially correct
23 Correct 4 ms 600 KB Output is correct
24 Correct 4 ms 600 KB Output is correct
25 Partially correct 4 ms 596 KB Output is partially correct
26 Partially correct 9 ms 600 KB Output is partially correct
27 Partially correct 6 ms 744 KB Output is partially correct
28 Partially correct 5 ms 856 KB Output is partially correct
29 Partially correct 4 ms 600 KB Output is partially correct
30 Partially correct 4 ms 600 KB Output is partially correct
31 Partially correct 4 ms 740 KB Output is partially correct
32 Partially correct 7 ms 856 KB Output is partially correct
33 Partially correct 8 ms 600 KB Output is partially correct
34 Partially correct 5 ms 600 KB Output is partially correct
35 Partially correct 4 ms 716 KB Output is partially correct
36 Partially correct 5 ms 600 KB Output is partially correct
37 Partially correct 6 ms 744 KB Output is partially correct
38 Partially correct 7 ms 724 KB Output is partially correct
39 Partially correct 6 ms 736 KB Output is partially correct
40 Partially correct 5 ms 600 KB Output is partially correct
41 Partially correct 4 ms 600 KB Output is partially correct
42 Partially correct 5 ms 600 KB Output is partially correct
43 Partially correct 5 ms 748 KB Output is partially correct
44 Partially correct 5 ms 600 KB Output is partially correct
45 Partially correct 4 ms 736 KB Output is partially correct
46 Partially correct 4 ms 600 KB Output is partially correct
47 Partially correct 5 ms 744 KB Output is partially correct
48 Partially correct 7 ms 740 KB Output is partially correct
49 Partially correct 8 ms 600 KB Output is partially correct
50 Partially correct 6 ms 856 KB Output is partially correct
51 Partially correct 6 ms 856 KB Output is partially correct
52 Partially correct 7 ms 856 KB Output is partially correct
53 Partially correct 6 ms 736 KB Output is partially correct
54 Partially correct 4 ms 600 KB Output is partially correct
55 Partially correct 6 ms 856 KB Output is partially correct
56 Partially correct 6 ms 732 KB Output is partially correct
57 Partially correct 6 ms 736 KB Output is partially correct
58 Partially correct 5 ms 736 KB Output is partially correct
59 Partially correct 8 ms 736 KB Output is partially correct
60 Partially correct 7 ms 600 KB Output is partially correct
61 Partially correct 4 ms 600 KB Output is partially correct
62 Correct 0 ms 344 KB Output is correct
63 Correct 0 ms 344 KB Output is correct
64 Correct 0 ms 344 KB Output is correct
65 Correct 0 ms 344 KB Output is correct
66 Correct 0 ms 344 KB Output is correct
67 Correct 0 ms 344 KB Output is correct
68 Correct 1 ms 344 KB Output is correct
69 Correct 1 ms 344 KB Output is correct
70 Correct 1 ms 344 KB Output is correct
71 Correct 0 ms 344 KB Output is correct
72 Correct 1 ms 344 KB Output is correct
73 Correct 0 ms 344 KB Output is correct
74 Correct 0 ms 344 KB Output is correct
75 Correct 1 ms 344 KB Output is correct
76 Correct 1 ms 344 KB Output is correct
77 Correct 0 ms 344 KB Output is correct
78 Correct 0 ms 344 KB Output is correct
79 Correct 0 ms 344 KB Output is correct
80 Correct 0 ms 344 KB Output is correct
81 Correct 0 ms 344 KB Output is correct
82 Correct 0 ms 344 KB Output is correct
83 Correct 0 ms 344 KB Output is correct
84 Correct 0 ms 344 KB Output is correct
85 Correct 1 ms 344 KB Output is correct
86 Correct 0 ms 344 KB Output is correct
87 Correct 0 ms 344 KB Output is correct
88 Correct 0 ms 344 KB Output is correct
89 Correct 1 ms 344 KB Output is correct
90 Correct 1 ms 596 KB Output is correct
91 Correct 1 ms 344 KB Output is correct