# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1108949 | codinion | Poi (IOI09_poi) | C++14 | 363 ms | 20552 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// https://oj.uz/problem/view/IOI09_poi
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Player {
public:
bool operator<(Player const& obj) {
return this->score == obj.score ? this->count>obj.count : this->score > obj.score;
}
Player() {
score = 0;
count = 0;
isPhilip = false;
}
void updateScore(int score) {
this->score = score;
}
void updateCount(int count) {
this->count = count;
}
int getScore() {return score;}
vector<int> tasks;
bool isPhilip;
private:
int score;
int count;
};
int main()
{
int N,T,P;
cin>>N;
cin>>T;
cin>>P;
int* solved = new int[T]();
Player* arr = new Player[N]();
for(int i=0;i<N;i++) {
int cc = 0;
for(int t = 0;t<T;t++) {
int kt;
cin>>kt;
cc+=kt;
if(kt == 1)
solved[t]++;
(arr[i].tasks).push_back(kt);
}
arr[i].updateCount(cc);
if(i==P-1)
arr[i].isPhilip = true;
}
for(int i=0;i<N;i++) {
int ss = 0;
for(int t = 0;t<T;t++) {
ss+= ( (arr[i].tasks)[t] * (N-solved[t]));
}
arr[i].updateScore(ss);
}
sort(arr, arr+N);
for(int i=0;i<N;i++)
{
// cout<<"Arr i : "<<i;
// cout<<" tasks:";
// for(int t:arr[i].tasks)
// {
// cout<<" "<<t;
// }
// cout<<" Philip : "<<(arr[i].isPhilip?"Y":"N");
// cout<<endl;
if(arr[i].isPhilip) {
cout<<arr[i].getScore()<<" "<<i+1<<endl;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |