
[ 백준 20114 ] 미아 노트 (C++)
·
Algorithm/Baekjoon
[문제 풀이]1. 번진 구역을 체크하면서 문자를 찾을 수 있다면 그 문자를 출력하고 아니면 "?"를 출력한다.[코드]번진 구역을 체크하면서 문자를 찾는다.for(int i=0; i[전체 코드]#include using namespace std;int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int N, H, W; string answer, tmp, arr[11]; cin>>N>>H>>W; for(int h=0; h>arr[h]; } for(int i=0; ihttps://www.acmicpc.net/problem/20114