Submission #1038992

# Submission time Handle Problem Language Result Execution time Memory
1038992 2024-07-30T10:35:55 Z vjudge1 Domino (COCI15_domino) C++17
80 / 160
1766 ms 361792 KB
#include <bits/stdc++.h>
using namespace std;

#define F first
#define S second

typedef long long ll;
typedef pair<ll, ll> pii;

const ll N = 2e3 + 10, K = 8;
ll n, k, mat[N][N], exist[N][N], mark[N][N];
vector<pii> cells, my_cells;

ll dx[4] = {0, 1, 0, -1};
ll dy[4] = {1, 0, -1, 0};

bool done;

long long ans, total;

void dfs(ll i){
    if (i >= my_cells.size()){
        done = 1;
        return;
    }
    auto p = my_cells[i];
    if (mark[p.F][p.S]){
        dfs(i + 1);
        return;
    }

    mark[p.F][p.S] = 1;
    for (ll i = 0; i < 4; i ++){
        ll nx = p.F + dx[i];
        ll ny = p.S + dy[i];

        if (!exist[nx][ny]) continue;
        if (mark[nx][ny]) continue;

        mark[nx][ny] = 1;
        dfs(i + 1);        
        mark[nx][ny] = 0;
    }
    mark[p.F][p.S] = 0;
}

int main(){
    cin >> n >> k;
    for (ll i = 1; i <= n; i ++)
        for (ll j = 1; j <= n; j ++)
            cin >> mat[i][j], total += mat[i][j];

    vector<pair<ll, pair<pii, pii>>> vec;
    for (ll i = 1; i <= n; i ++){
        for (ll j = 1; j <= n; j ++){
            if (j + 1 <= n)
                vec.push_back({mat[i][j] + mat[i][j + 1], {{i, j}, {i, j + 1}}});
            if (i + 1 <= n)
                vec.push_back({mat[i][j] + mat[i + 1][j], {{i, j}, {i + 1, j}}});
        }
    }
    sort(vec.begin(), vec.end());

    ll mn = 7 * k;
    set<pii> st;
    while (vec.size() and st.size() < mn){
        st.insert((vec.back()).S.F);
        st.insert((vec.back()).S.S);
        vec.pop_back();
    }

    for (auto p : st){
        cells.push_back(p);
    }

    ans = total;
    ll sz = cells.size();
    for (ll mask = 0; mask < (1 << sz); mask ++){
        ll c = __builtin_popcount(mask);
        if (c != 2 * k) continue;

        my_cells.clear();
        long long sm = 0;
        for (ll i = 0; i < sz; i ++){
            if ((1 << i) & mask){
                my_cells.push_back(cells[i]);
                sm += mat[cells[i].F][cells[i].S];
            }
        }

        for (auto p : my_cells)
            exist[p.F][p.S] = 1;

        done = 0;
        dfs(0);

        for (auto p : my_cells)
            exist[p.F][p.S] = 0;

        if (done)
            ans = min(ans, total - sm);
    }

    cout << ans << endl;
}

Compilation message

domino.cpp: In function 'void dfs(ll)':
domino.cpp:22:11: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |     if (i >= my_cells.size()){
      |         ~~^~~~~~~~~~~~~~~~~~
domino.cpp: In function 'int main()':
domino.cpp:66:37: warning: comparison of integer expressions of different signedness: 'std::set<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
   66 |     while (vec.size() and st.size() < mn){
      |                           ~~~~~~~~~~^~~~
# Verdict Execution time Memory Grader output
1 Correct 87 ms 36516 KB Output is correct
2 Correct 83 ms 34472 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 6808 KB Output is correct
2 Correct 2 ms 6808 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1752 ms 361772 KB Output is correct
2 Correct 1353 ms 361768 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 10 ms 4612 KB Output is correct
2 Correct 9 ms 4620 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 930 ms 355540 KB Output is correct
2 Correct 1077 ms 355504 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1168 ms 101024 KB Output is correct
2 Correct 1231 ms 102808 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1607 ms 361792 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4924 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1661 ms 361764 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 9420 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Correct 1 ms 4444 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1609 ms 361752 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 179 ms 6996 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 507 ms 101024 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 688 ms 4440 KB Output is correct
2 Correct 686 ms 4444 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1766 ms 361748 KB Output isn't correct
2 Halted 0 ms 0 KB -