이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<vector<int>> combinations;
vector<int> current;
void generate_combinations(int n, int k) {
//choose k of the first n
if (n<k-1) {
return;
}
if (k==0) {
combinations.push_back(current);
return;
}
if (n==0) {
return;
}
for (int i=0; i<n; i++) {
current.push_back(i);
generate_combinations(i,k-1);
current.pop_back();
}
}
signed main() {
//freopen("input.txt","r", stdin);
//freopen("output.txt","w",stdout);
int n,k,c;
cin >> n >> k >> c;
vector<vector<int>> cons;
for (int i=0; i<n; i++) {
vector<int> c1;
for (int j=0; j<k; j++) {
int x;
cin >> x;
c1.push_back(x);
}
cons.push_back(c1);
}
generate_combinations(n,k);
//cout << combinations.size() << endl;
/*for (auto i:combinations) {
for (auto j:i) {
cout << j <<" ";
}
cout << endl;
}*/
vector<int> answers;
for (auto com:combinations) {
vector<int> maxes(k,0);
for (int i:com) {
for (int j=0; j<k; j++) {
maxes[j]=max(maxes[j],cons[i][j]);
}
}
answers.push_back(accumulate(maxes.begin(), maxes.end(), (int)0));
}
sort(answers.begin(), answers.end());
reverse(answers.begin(), answers.end());
/*for (auto i:answers) {
cout << i <<" ";
}
cout << endl;*/
cout << answers[c-1] << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |