Submission #711627

#TimeUsernameProblemLanguageResultExecution timeMemory
711627minipigACM (COCI19_acm)C++14
50 / 50
2 ms340 KiB
#include <bits/stdc++.h> using namespace std; struct score{ int AC=0,penalty=0; string name; const bool operator <(score team2) const{ if(AC!=team2.AC){ return AC<team2.AC; } if(penalty!=team2.penalty){ return penalty>team2.penalty; } return name<team2.name; } } score1; set<score> set1; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n,m; cin>>n>>m; for(int i=0;i<=n;i++){ string team_name; cin>>team_name; int temp_AC=0,temp_penalty=0; for(int j=0;j<m;j++){ string temp_score; cin>>temp_score; if(temp_score[0]=='-'||(team_name=="NijeZivotJedanACM"&&i!=n)){ continue; } else{ temp_AC++; temp_penalty+=(temp_score[1]-'0'-1)*20*60; int H,M,S; H=(temp_score[3]-'0')*10+(temp_score[4]-'0'); M=(temp_score[6]-'0')*10+(temp_score[7]-'0'); S=(temp_score[9]-'0')*10+(temp_score[10]-'0'); temp_penalty+=H*60*60+M*60+S; } score1.AC=temp_AC; score1.penalty=temp_penalty; score1.name=team_name; } if(team_name!="NijeZivotJedanACM"||i==n){ score1.AC=temp_AC; score1.penalty=temp_penalty; score1.name=team_name; set1.insert(score1); } } int place=0; for(auto i:set1){ //cout<<i.name<<' '<<i.AC<<' '<<i.penalty<<'\n'; if(i.name=="NijeZivotJedanACM"){ break; } place++; } cout<<n-place<<'\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...