답안 #337899

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
337899 2020-12-22T05:22:12 Z beksultan04 K번째 경로 (IZhO11_kthpath) C++14
0 / 100
1 ms 364 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scan1(a) scanf("%lld",&a);
#define scan2(a,b) scanf("%lld %lld",&a, &b);
#define scan3(a,b,c) scanf("%lld %lld %lld",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin(),s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
const int N = 1e6+12,INF=1e9+7;
int dp[201][201],m,n,k,cnt=0;
vector <char> v;
char q[50][50];
void dfs(int x,int y){
    if (x == n && m == y){
        cnt++;
        if (cnt == k){
            int i;
            for (i=0;i<v.size();++i)cout <<v[i];
            exit(0);
        }
        ret ;
    }
    if (y+1 <= m){
        v.pb(q[x][y+1]);
        dfs(x,y+1);
        v.pop_back();
    }
    if (x + 1 <= n){
        v.pb(q[x+1][y]);
        dfs(x+1,y);
        v.pop_back();
    }
}


main(){
    int i,j;
    scan2(n,m)
    for (i=1;i<=n;++i){
        for (j=1;j<=m;++j){
            cin>>q[i][j];
        }
    }
    cin>>k;
    v.pb(q[1][1]);
    dfs(1,1);
}







Compilation message

kthpath.cpp: In function 'void dfs(long long int, long long int)':
kthpath.cpp:28:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |             for (i=0;i<v.size();++i)cout <<v[i];
      |                      ~^~~~~~~~~
kthpath.cpp: At global scope:
kthpath.cpp:46:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   46 | main(){
      |      ^
kthpath.cpp: In function 'int main()':
kthpath.cpp:12:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   12 | #define scan2(a,b) scanf("%lld %lld",&a, &b);
      |                    ~~~~~^~~~~~~~~~~~~~~~~~~~
kthpath.cpp:48:5: note: in expansion of macro 'scan2'
   48 |     scan2(n,m)
      |     ^~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 0 ms 364 KB Output isn't correct
3 Halted 0 ms 0 KB -