# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1038903 |
2024-07-30T08:51:44 Z |
vjudge1 |
Domino (COCI15_domino) |
C++17 |
|
4000 ms |
376920 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 = 4 * k + 2;
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 |
98 ms |
31932 KB |
Output is correct |
2 |
Correct |
89 ms |
31928 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 |
1732 ms |
369884 KB |
Output is correct |
2 |
Correct |
1391 ms |
370208 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
990 ms |
358512 KB |
Output is correct |
2 |
Incorrect |
1110 ms |
357748 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
396 ms |
100932 KB |
Output is correct |
2 |
Incorrect |
416 ms |
100744 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1738 ms |
370036 KB |
Output is correct |
2 |
Incorrect |
2035 ms |
373168 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1920 ms |
6980 KB |
Output is correct |
2 |
Incorrect |
1164 ms |
6980 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2918 ms |
376428 KB |
Output is correct |
2 |
Incorrect |
2885 ms |
376920 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
4057 ms |
7596 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
440 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
4072 ms |
374892 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
5272 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
442 ms |
98400 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
722 ms |
344 KB |
Output is correct |
2 |
Correct |
805 ms |
2396 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1757 ms |
375384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |