| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 850863 | serifefedartar | Olympiads (BOI19_olympiads) | C++17 | 13 ms | 604 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
 
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 1e9 + 7;
const ll LOGN = 20;
const ll MAXN = 505;
vector<vector<int>> p;
int N, K, C;
struct Rule {
    vector<int> r;
    int res;
    Rule(vector<int> rl) {
        r = rl;
        res = 0;
        for (int i = 0; i < r.size(); i++) {
            if (r[i] == 2)
                r[i] = 0;
        }
        set<int> taken;
        for (int i = 0; i < N; i++) {
            if (r[i] == 1)
                taken.insert(i);
        }
        for (int i = taken.size(); i < K; i++) {
            int mx = 0;
            int mx_ind = -1;
            for (int j = 0; j < N; j++) {
                if (r[j] != -1 && taken.count(j) == 0 && mx <= p[j][i]) {
                    mx = p[j][i];
                    mx_ind = j;
                }
            }
            if (mx_ind != -1)
                taken.insert(mx_ind);
        }
        if (taken.size() != K)
            res = -1;
        else {
            for (auto u : taken) {
                if (r[u] == 0)
                    r[u] = 2;
            }
            for (int i = 0; i < K; i++) {
                int mx_here = 0;
                for (auto u : taken)
                    mx_here = max(mx_here, p[u][i]);
                res += mx_here;
            }
        }
    }
};
bool operator <(Rule A, Rule B) {
        return A.res < B.res;
}
int main() {
    fast
    cin >> N >> K >> C;
    p = vector<vector<int>>(N, vector<int>(K));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < K; j++)
            cin >> p[i][j];
    }
    priority_queue<Rule> pq;
    vector<int> emp(N, 0);
    Rule new_rule = Rule(emp);
    pq.push(new_rule);
    while (true) {
        Rule now = pq.top();
        pq.pop();
        C--;
        if (C == 0) {
            cout << now.res << "\n";
            exit(0);
        }
        vector<int> R = now.r;
        for (int i = 0; i < N; i++) {
            if (R[i] == 2) {
                R[i] = -1;
                new_rule = Rule(R);
                pq.push(new_rule);
                R[i] = 1;
            }
        }
    }
}
컴파일 시 표준 에러 (stderr) 메시지
| # | 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... | ||||
