# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
611970 | tranxuanbach | Poi (IOI09_poi) | C++17 | 286 ms | 16236 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define endl '\n'
#define fi first
#define se second
#define For(i, l, r) for (auto i = (l); i < (r); i++)
#define ForE(i, l, r) for (auto i = (l); i <= (r); i++)
#define FordE(i, l, r) for (auto i = (l); i >= (r); i--)
#define Fora(v, a) for (auto v: (a))
#define bend(a) (a).begin(), (a).end()
#define isz(a) ((signed)(a).size())
using ll = long long;
using ld = long double;
using pii = pair <int, int>;
using vi = vector <int>;
using vpii = vector <pii>;
using vvi = vector <vi>;
const int N = 2e3 + 5;
int n, m, k;
int a[N][N];
int b[N], c[N], d[N];
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
// freopen("KEK.inp", "r", stdin);
// freopen("KEK.out", "w", stdout);
cin >> n >> m >> k;
ForE(i, 1, n){
ForE(j, 1, m){
cin >> a[i][j];
}
}
ForE(j, 1, m){
ForE(i, 1, n){
if (a[i][j] == 0){
b[j]++;
}
}
ForE(i, 1, n){
if (a[i][j] == 1){
c[i] += b[j];
d[i]++;
}
}
}
cout << c[k] << ' ';
vi e(n); iota(bend(e), 1);
sort(bend(e), [&](int i, int j){
if (c[i] != c[j]){
return c[i] > c[j];
}
if (d[i] != d[j]){
return d[i] > d[j];
}
return i < j;
});
ForE(i, 1, n){
if (e[i - 1] == k){
cout << i << endl;
break;
}
}
}
/*
==================================================+
INPUT: |
--------------------------------------------------|
--------------------------------------------------|
==================================================+
OUTPUT: |
--------------------------------------------------|
--------------------------------------------------|
==================================================+
*/
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |