Submission #205681

#TimeUsernameProblemLanguageResultExecution timeMemory
205681ZwariowanyMarcin과수원 (NOI14_orchard)C++14
0 / 25
377 ms6264 KiB
#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; char s[nax]; 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) { scanf ("%s", s + 1); rep(j, 1, m) a[i][j] = (int) s[j] - '0'; } rep(i, 1, n) rep(j, 1, m) { 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 (stderr)

orchard.cpp: In function 'int main()':
orchard.cpp:29: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:32:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf ("%s", s + 1);
   ~~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...