# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
717736 | VMaksimoski008 | Poi (IOI09_poi) | C++14 | 191 ms | 452 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;
void setIO()
{
ios_base::sync_with_stdio(false);
cout.tie(0);
cin.tie(0);
}
bool cmp(pair<int, int> a, pair<int, int> b)
{
if(a.second != b.second)
return (a.second > b.second);
else
return (a.first < b.first);
}
int main()
{
setIO();
int n, t, p, x;
int totalPoints = 0;
cin >> n >> t >> p;
vector<int> taskPoints(t+1, n);
vector<int> phillipSolved;
vector<pair<int, int> > rankList;
for(int i=0; i<n; i++)
{
for(int j=0; j<t; j++)
{
cin >> x;
if(x == 1)
taskPoints[j+1] -= 1;
if(i+1 == p)
{
if(x == 1)
phillipSolved.pb(j+1);
}
}
}
for(int h : phillipSolved)
totalPoints += taskPoints[h];
for(int i=1; i<=n; i++)
{
rankList.pb({i, 0});
for(int j=1; j<=t; j++)
{
rankList[rankList.size()-1].second += taskPoints[j];
}
}
sort(rankList.begin(), rankList.end(), cmp);
int phillipRank = 0;
for(auto a : rankList)
{
phillipRank++;
if(a.first == p)
break;
}
cout << totalPoints << " " << phillipRank << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |