# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
829300 | tolbi | Catfish Farm (IOI22_fish) | C++17 | 662 ms | 508384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#include "fish.h"
ll dp[3001][3001][3];
int grid[3001][3001];
int N;
long long f(int x, int y, int flag){
if (dp[x][y][flag]!=-1) return dp[x][y][flag];
if (flag==1){
dp[x][y][flag]=0;
if (y<N){
ll crr = 0;
if (x>0) crr = grid[x-1][y];
dp[x][y][flag]=crr+f(x,y+1,1);
}
if (x+1<N){
dp[x][y][flag]=max(dp[x][y][flag],f(x+1,y,1));
dp[x][y][flag]=max(dp[x][y][flag],f(x+1,y,0));
}
}
else if (flag==0){
dp[x][y][flag]=0;
if (y-1>=0){
dp[x][y][flag]=grid[x][y-1]+f(x,y-1,0);
}
if (x+1<N){
dp[x][y][flag]=max(dp[x][y][flag],f(x+1,y,0));
if (y==0){
dp[x][y][flag]=max(dp[x][y][flag],f(x+1,y,2));
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |