# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
717728 | lukatasev | Poi (IOI09_poi) | C++14 | 537 ms | 16244 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <set>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
int main() {
int n,t,p;
int num;
cin>>n>>t>>p;
int taskPoint[2001] = {0};
map<int, vector<int> > student;
for(int i=1; i<=n; i++) {
vector<int> temp;
for(int j=1; j<=t; j++) {
cin>>num;
temp.push_back(num);
if(num == 0) {
taskPoint[j] += 1;
}
}
student.insert({i, temp});
}
set<pair<int, int> > studentPoints;
int tempNum;
for(auto x: student) {
tempNum = 0;
for(auto y: x.second) {
tempNum += taskPoint[y];
}
studentPoints.insert({tempNum, x.first});
}
int i=0;
for(auto x: studentPoints) {
i++;
if(x.second == p) {
cout<<i<<" "<<x.first<<endl;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |