Submission #205688

# Submission time Handle Problem Language Result Execution time Memory
205688 2020-02-29T13:36:26 Z ZwariowanyMarcin Orchard (NOI14_orchard) C++14
13 / 25
456 ms 6396 KB
#include <bits/stdc++.h>
#define LL long long
#define LD long double
#define pb push_back
#define mp make_pair
#define ss(x) (int) x.size()
#define fi first
#define se second
#define cat(x) cerr << #x << " = " << x << endl
#define rep2(i, j, n) for (LL i = j; i <= n; ++i)
#define rep(i, j, n) for (int i = j; i <= n; ++i)
#define per(i, j, n) for (int i = n; j <= i; --i)
#define boost cin.tie(0);ios_base::sync_with_stdio(0);
#define vi vector <int>

using namespace std;

const int nax = 5005;

int n, m;
int a[155][nax];
int g[155][nax];
LL f[nax];
LL best = 1e18;
int ones;

int main() {	
	scanf ("%d%d", &n, &m);
	
	rep(i, 1, n) rep(j, 1, m) {
		scanf ("%d", &a[i][j]);
		g[i][j] = (a[i][j] == 1) + g[i - 1][j];
		ones += (a[i][j] == 1);
	}
	
	rep(i, 1, n)
		rep(j, i, n) {
			rep(x, 1, m) f[x] = g[j][x] - g[i - 1][x];
			LL opt = 1e18;
			int h = j - i + 1;
			rep(x, 1, m) f[x] += f[x - 1];
			
			rep(x, 1, m) {
				opt = min(opt, 2 * f[x - 1] - h * (x - 1));
				best = min(best, ones + (h * x) - 2 * f[x] + opt);
			}
			
		}
	printf ("%lld\n", best);
			
	
	return 0;
}

Compilation message

orchard.cpp: In function 'int main()':
orchard.cpp:28:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf ("%d%d", &n, &m);
  ~~~~~~^~~~~~~~~~~~~~~~
orchard.cpp:31:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf ("%d", &a[i][j]);
   ~~~~~~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 5 ms 376 KB Output is correct
2 Correct 5 ms 376 KB Output is correct
3 Correct 5 ms 376 KB Output is correct
4 Correct 5 ms 376 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 504 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 83 ms 6396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 27 ms 1528 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 9 ms 1272 KB Output is correct
2 Correct 19 ms 1660 KB Output is correct
3 Correct 19 ms 1656 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 452 ms 6288 KB Output is correct
2 Correct 441 ms 6264 KB Output is correct
3 Correct 456 ms 6292 KB Output is correct