제출 #648337

#제출 시각아이디문제언어결과실행 시간메모리
648337Trisanu_DasJetpack (COCI16_jetpack)C++17
80 / 80
31 ms5964 KiB
#include<bits/stdc++.h>
using namespace std;
 
vector<int>res;
char tab[20][100010];
int n;
int dfs(int l,int c){
    if(tab[l][c]=='X')return 0;
    if(c==n-1)return 1;
    tab[l][c]='X';
    if(dfs(min(9,l+1),c+1) == 1) return 1;
    else if(dfs(max(0,l-1),c+1) == 1){
        res.push_back(c);
        return 1;
    }
    return 0;
}
int main(){
    cin >> n;
    for(int i=0;i<10;i++) cin >> tab[i];
    dfs(9,0);
    reverse(res.begin(),res.end());
    cout << res.size() << '\n';
    for(int i = 0;i < res.size(); i++) cout << res[i] << ' ' << 1 << '\n';;
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

jetpack.cpp: In function 'int main()':
jetpack.cpp:24:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |     for(int i = 0;i < res.size(); i++) cout << res[i] << ' ' << 1 << '\n';;
      |                   ~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...