# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
961859 | rithvick_2004 | Poi (IOI09_poi) | C++14 | 172 ms | 20052 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
struct finale
{
int id;
int p_solved;
int score;
bool operator< (const finale &F)
{
if(score!=F.score) return (score>F.score);
else if( p_solved!=F.p_solved) return(p_solved>F.p_solved);
else return(id<F.id);
}
};
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int N,T,P;
cin>>N>>T>>P; //no choice
int k; //help variable
int Contestant[N][T+1]; //N is number of participants and T is for task Contestant[N][T] stores the number of questions solved
int points[T]; //giving points for each task
fill(points,points+T,N); //initially all points are N
for (int i = 0; i < N; i++)
{
Contestant[i][T] =0;
for (int j = 0; j < T; j++)
{
cin>>k; // this is 1 or 0 but i took int so that I don't get a weird error
points[j]=points[j]-k; //understandable
Contestant[i][j]=k; //the 2D array get's filled
Contestant[i][T] =Contestant[i][T] +k;
}
}// all inputs taken and the points of each task
vector<finale> data(N);
for(int i=0; i<N;i++)
{
data[i].id=i+1;
data[i].p_solved=Contestant[i][T];
data[i].score =0;
for(int j =0; j<T;j++)
{
data[i].score=data[i].score+(Contestant[i][j])*(points[j]);
}
}
k=data[P-1].score;
cout<<k<<" ";
sort(data.begin(),data.end());
//now comes the rubbish O(n) part
for(int i=0; i<N;i++)
{
if(P==data[i].id)
{
cout<<i+1;
break;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |