# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
338179 | juggernaut | K번째 경로 (IZhO11_kthpath) | C++14 | 3 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int N=33;
char arr[N][N],ans[N+N];
ll dp[N][N];
int n,m,len;
ll rec(int x,int y){
int pos=x+y;
if(ans[pos]!='*' and ans[pos]!=arr[x][y])
return 0;
if(x==n-1 and y==m-1)
return 1;
ll &ret=dp[x][y];
if(~ret)
return ret;
ret=0;
if(x+1<n)
ret+=rec(x+1,y);
if(y+1<m)
ret+=rec(x,y+1);
return ret;
}
int main(){
scanf("%d%d",&n,&m); len=n+m-1;
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
scanf(" %c",&arr[i][j]);
ll k;
scanf("%lld",&k);
for(int i=0;i<len;i++)
ans[i]='*';
ans[0]=arr[0][0];
for(int i=1;i<len;i++)
for(int j=0;j<26;j++){
ans[i]=j+'a';
memset(dp,-1,sizeof dp);
if(rec(0,0)>=k)
break;
k-=rec(0,0);
}
printf("%s\n",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |