# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
866276 | Bula | Poi (IOI09_poi) | C++14 | 497 ms | 23888 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
main(){
int n, m, p;
cin >> n >> m >> p;
int x[n + 1][m + 1];
vector<int> a(m + 1);
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
cin >> x[i][j];
}
}
for(int i = 1; i <= m; i++){
for(int j = 1; j <= n; j++){
a[i] += (1 - x[j][i]);
}
}
int sc = 0, pr = 0;
for(int i = 1; i <= m; i++){
if(x[p][i] == 1){
sc += a[i];
pr++;
}
}
int cnt = 0;
for(int i = 1; i <= n; i++){
int cur = 0, prob = 0;
for(int j = 1; j <= m; j++){
if(x[i][j] == 1){
cur += a[j];
prob++;
}
}
if(sc < cur){
cnt++;
}else if(sc == cur){
if(prob > pr) cnt++;
else if(prob == pr){
if(p > i) cnt++;
}
}
}
cout << sc << " " << cnt + 1 << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |