#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("-O3")
#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")
#define F first
#define S second
#define sz(x) int(x.size())
#define pb push_back
#define pf push_front
#define N 100050
#define M ll(1e9 + 7)
#define inf 1e9 + 1e9
using namespace std;
//using namespace __gnu_pbds;
typedef long double ld;
typedef long long ll;
typedef unsigned long long ull;
typedef short int si;
typedef array <ll, 3> a3;
typedef array <ll, 5> a5;
//typedef tree <ll, null_type, less_equal<ll>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
int ans = 0;
int n, k, a[2001][2001], mk[2001][2001], mx;
vector <pair <int, pair <int, pair <int, int> > > > vr;
inline void dfs(int v, int &kol)
{
if (v == k) {ans = max(ans, kol); return;}
for (int i = 0; i < min(mx, sz(vr)); i++)
{
int x = vr[i].S.S.F, y = vr[i].S.S.S;
int nkol = kol;
if (mk[x][y] == 0) nkol += a[x][y];
if (vr[i].S.F == 0 && !mk[x - 1][y]) nkol += a[x - 1][y];
if (vr[i].S.F == 1 && !mk[x][y - 1]) nkol += a[x][y - 1];
mk[x][y]++;
if (vr[i].S.F == 0) mk[x - 1][y]++; else mk[x][y - 1]++;
dfs(v + 1, nkol);
mk[x][y]--;
if (vr[i].S.F == 0) mk[x - 1][y]--; else mk[x][y - 1]--;
}
}
int main()
{
//freopen("input.txt", "r", stdin); //freopen("output4.txt", "w", stdout);
ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> k;
if (k <= 5) mx = 30;
else if (k == 6) mx = 23;
else if (k == 7) mx = 13;
else mx = 10;
ll sum = 0;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++) {cin >> a[i][j]; sum += ll(a[i][j]);}
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
{
if (i != 0) vr.pb({a[i][j] + a[i - 1][j], {0, {i, j}}});
if (j != 0) vr.pb({a[i][j] + a[i][j - 1], {1, {i, j}}});
}
sort(vr.begin(), vr.end());
reverse(vr.begin(), vr.end());
int nkol = 0;
dfs(0, nkol);
cout << sum - ll(ans) << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
102 ms |
11624 KB |
Output is correct |
2 |
Correct |
87 ms |
11624 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
896 KB |
Output is correct |
2 |
Correct |
1 ms |
768 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1871 ms |
147472 KB |
Output is correct |
2 |
Correct |
1301 ms |
147416 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
1 ms |
384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1083 ms |
143604 KB |
Output is correct |
2 |
Correct |
921 ms |
143580 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
455 ms |
41184 KB |
Output is correct |
2 |
Correct |
314 ms |
41312 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2295 ms |
147420 KB |
Output is correct |
2 |
Correct |
1867 ms |
147520 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4003 ms |
904 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4091 ms |
147544 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1858 ms |
1408 KB |
Output is correct |
2 |
Incorrect |
1836 ms |
1408 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1805 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3696 ms |
147444 KB |
Output is correct |
2 |
Incorrect |
3151 ms |
147560 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3014 ms |
1036 KB |
Output is correct |
2 |
Incorrect |
2970 ms |
1024 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3401 ms |
41116 KB |
Output is correct |
2 |
Incorrect |
3199 ms |
41180 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2969 ms |
428 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4048 ms |
147412 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |