# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
660280 | ivopav | Raisins (IOI09_raisins) | C++14 | 914 ms | 29388 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int sum(const vector<vector<int>>& mat2,int x1,int y1,int x2,int y2){
if (x1==0 && y1==0){
return mat2[y2][x2];
}
else if(x1==0){
return mat2[y2][x2]-mat2[y1-1][x2];
}
else if(y1==0){
return mat2[y2][x2]-mat2[y2][x1-1];
}
else{
return mat2[y2][x2]-mat2[y1-1][x2]-mat2[y2][x1-1]+mat2[y1-1][x1-1];
}
}
int rek(const vector<vector<int>>& mat,const vector<vector<int>>& mat2,vector<vector<vector<vector<int>>>>& mem,int x1,int y1,int x2,int y2){
if (x1==x2 && y1==y2){
return 0;
}
if (mem[x1][y1][x2][y2]!=-1){
return mem[x1][y1][x2][y2];
}
int najm=numeric_limits<int>::max();
for (int i=x1;i<x2;i++){
int pom=rek(mat,mat2,mem,x1,y1,i,y2);
int pom2=rek(mat,mat2,mem,i+1,y1,x2,y2);
najm=min(najm,pom+pom2);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |