Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
34085 陈柏诚 [CSP-J2021]小熊的果篮 C++ 运行超时 70 1000 MS 1816 KB 539 2021-12-09 13:57:48

Tests(7/10):


#include<bits/stdc++.h> using namespace std; const int maxN=2e5+5; struct Fruit { int type; bool die; } fruit[maxN]; int main() { int n; scanf("%d",&n); for(int i=1; i<=n; i++) { scanf("%d",&fruit[i].type); } int cnt=0; while(cnt<n) { int ok=-1; for(int i=1; i<=n; i++) { if(!fruit[i].die&&fruit[i].type!=ok) { fruit[i].die=true; cnt++; ok=fruit[i].type; printf("%d ",i); } } putchar('\n'); } return 0; }


测评信息: