# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
516347 | Jomnoi | 과수원 (NOI14_orchard) | C++17 | 331 ms | 8496 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define DEBUG 0
using namespace std;
const int N = 160;
const int M = 5e3 + 10;
const int INF = 1e9 + 7;
int a[N][M];
int dp[M];
int get(int x1, int x2, int y1, int y2) {
return a[x2][y2] - a[x1 - 1][y2] - a[x2][y1 - 1] + a[x1 - 1][y1 - 1];
}
int main() {
int n, m;
scanf(" %d %d", &n, &m);
int sum = 0;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
scanf(" %d", &a[i][j]);
if(a[i][j] == 0) {
a[i][j] = 1;
}
else {
sum++;
a[i][j] = -1;
}
a[i][j] += a[i - 1][j] + a[i][j - 1] - a[i - 1][j - 1];
}
}
int ans = INF;
dp[m + 1] = INF;
for(int i = 1; i <= n; i++) {
for(int j = i; j <= n; j++) {
for(int k = m; k >= 1; k--) {
dp[k] = min(dp[k + 1], get(i, j, 1, k));
}
if(DEBUG) {
cout << "Debugging : " << i << " " << j << endl;
for(int k = 1; k <= m; k++) {
cout << dp[k] << " ";
}
cout << endl;
}
for(int k = 1; k <= m; k++) {
ans = min(ans, sum + dp[k] - get(i, j, 1, k - 1));
}
}
}
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |