1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(0);cin.tie(0); vector<vector<char>> v; bool t[123]={0}; int m,n,k,d; string s; cin>>m>>n>>k; int nowx=m-1,nowy=0,cnt=0; v.resize(m,vector<char>(n)); for(int i=0;i<m;i++){ cin>>s; for(int j=0;j<n;j++){ v[i][j]=s[j]; } } for(int i=0;i<k;i++){ cin>>d; if(d==0){ if((nowx-1)>=0) nowx--; } else if(d==1){ if((nowy+1)<n) nowy++; } else if(d==2){ if((nowx+1)<m&&(nowy+1)<n) nowx++,nowy++; } else if(d==3){ if((nowx+1)<m) nowx++; } else if(d==4){ if((nowy-1)>=0) nowy--; } else if(d==5){ if((nowx-1)>=0&&(nowy-1)>=0) nowx--,nowy--; } cout<<v[nowx][nowy]; t[(int)(v[nowx][nowy])]=1; } for(int i='A';i<='Z';i++){ if(t[i]==1) cnt++; } for(int i='a';i<='z';i++){ if(t[i]==1) cnt++; } cout<<"\n"<<cnt; }
|