# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
572063 | jhkfsdgsjhklf | Poi (IOI09_poi) | C++17 | 597 ms | 10820 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<vector<int>> zadanie(2007);
int sizezadanie[2007];
int n=0,t=0,p=0;
int wyniki[2007];
int zrobione[2007];
int up=0;
cin>>n>>t>>p;
for(int i=1;i<=t;i++)sizezadanie[i]=n;
for(int i=1;i<=n;i++)zrobione[i]=0;
for(int i=1;i<=n;i++){
for(int y=1;y<=t;y++){
int wynik = 0;
cin>>wynik;
if(wynik==1){
zadanie[y].push_back(i);
sizezadanie[y]--;
zrobione[i]++;
}
}
}
for(int i=1;i<=t;i++){
for(auto x:zadanie[i]){
wyniki[x]+=sizezadanie[i];
}
}
for(int i=1;i<=n;i++){
if(i!=p){
if(wyniki[i]>wyniki[p])
up++;
else if(wyniki[i]==wyniki[p]){
if(zrobione[i]>zrobione[p])
up++;
else if(zrobione[i]==zrobione[p])
if(i<p)
up++;
}
}
}
cout<<wyniki[p]<<" "<<1+up;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |