Submission #648337

#TimeUsernameProblemLanguageResultExecution timeMemory
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; }

Compilation message (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...