# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
964341 | anango | 건포도 (IOI09_raisins) | C++17 | 645 ms | 55432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
vector<vector<int>> grid;
vector<vector<int>> pref;
vector<vector<vector<vector<int>>>> dp; //(i,j) and (k,l)
int rect(int a, int b, int c, int d) {
return pref[c+1][d+1]-pref[c+1][b]-pref[a][d+1]+pref[a][b];
}
signed main() {
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
int n,m;
cin >> n >> m;
int INF=1000000007;
dp=vector(n,vector(m,vector(n,vector<int>(m,INF))));
pref=vector(n+1,vector<int>(m+1,0));
grid=vector(n,vector<int>(m,0));
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
int x;
cin >> x;
grid[i][j] = x;
}
}
for (int i=1; i<=n; i++) {
for (int j=1; j<=m; j++) {
pref[i][j] = pref[i][j-1]+pref[i-1][j]-pref[i-1][j-1]+grid[i-1][j-1];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |