# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
624144 | lam | Tracks in the Snow (BOI13_tracks) | C++14 | 697 ms | 144128 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define maxn 4010
using namespace std;
int n,m,dp[maxn][maxn],ans=1;
char a[maxn][maxn];
deque<pair<int,int>> q;
int dx[4]={0,1,0,-1};
int dy[4]={1,0,-1,0};
bool in(int x, int y)
{
if (x<1||x>n) return 0;
if (y<1||y>n) return 0;
return a[x][y]!='.';
}
int main()
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
cin>>n>>m;
for (int i=1; i<=n; i++)
for (int j=1; j<=m; j++) cin>>a[i][j],dp[i][j]=0;
dp[1][1]=1;
q.push_back({1,1});
while (!q.empty())
{
int u=q.front().first;
int v=q.front().second;
ans=max(ans,dp[u][v]);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |