Submission #205692

# Submission time Handle Problem Language Result Execution time Memory
205692 2020-02-29T13:39:41 Z ZwariowanyMarcin Orchard (NOI14_orchard) C++14
20 / 25
460 ms 33828 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 = 1e5 + 111;

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

int main() {	
	scanf ("%d%d", &n, &m);
	
	a.resize(n + 5);
	g.resize(n + 5);
	
	rep(i, 0, n) a[i].resize(m + 5, 0);
	rep(i, 0, n) g[i].resize(m + 5, 0);
	
	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:27: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:36: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 256 KB Output is correct
2 Correct 5 ms 256 KB Output is correct
3 Correct 5 ms 256 KB Output is correct
4 Correct 5 ms 256 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 6 ms 632 KB Output is correct
2 Correct 7 ms 888 KB Output is correct
3 Correct 6 ms 632 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 150 ms 33828 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 29 ms 3448 KB Output is correct
2 Correct 28 ms 3448 KB Output is correct
3 Correct 30 ms 3448 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 9 ms 380 KB Output is correct
2 Correct 21 ms 504 KB Output is correct
3 Correct 18 ms 504 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 457 ms 6392 KB Output is correct
2 Correct 460 ms 6368 KB Output is correct
3 Correct 448 ms 6264 KB Output is correct