记录编号 566268 评测结果 AWWWWTWTTT
题目名称 [CSP 2021J]小熊的果篮 最终得分 10
用户昵称 Gravatar空条承太郎& 是否通过 未通过
代码语言 C++ 运行时间 4.479 s
提交时间 2021-11-04 18:44:33 内存使用 6.68 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long n,a[500010];
 
int main(){
	freopen("csp2021pj_fruit.in","r",stdin);
	freopen("csp2021pj_fruit.out","w",stdout); 
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>a[i];
	}
    long long k=0,s;
	if(a[1]=1){
		s=0;
	}
	else{
		s=1;
	}
	while(k<=n-1){
	for(int i=1;i<=n;i++){
		if(a[i]==-1){
			
			continue;
		}
		
		 if(a[i]!=s){
			cout<<i<<" ";
			s=a[i];
			k++;
			a[i]=-1;
		}
		
	}
	cout<<endl;
	s=-1; 
} 
 
	return 0;
}