250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- sql
- Calendar
- 힙덤프
- BFS
- JPA
- map
- Properties
- Union-find
- CSS
- NIO
- 스프링부트
- union_find
- set
- string
- date
- spring boot
- GC로그수집
- html
- deque
- alter
- priority_queue
- 리소스모니터링
- 큐
- javascript
- math
- dfs
- 스택
- scanner
- List
Archives
- Today
- Total
매일 조금씩
[C++] 백준 11383번: 뚊 본문
728x90
반응형
#include <iostream>
#include <string>
#include <vector>
using namespace std;
vector<string> v;
int main(void) {
int M, N;
cin >> N >> M;
bool eyfa = true;
v.resize(2*N);
for (int i = 0; i < 2 * N; i++)
cin >> v[i];
for (int i = 0; i < N; i++) {
int k = 0;
for (int j = 0; j < M; j++) {
if (v[i][j] == v[i + N][j + k] && v[i][j] == v[i + N][j + k + 1]) {
k++;
}
else {
eyfa = false;
break;
}
}
if (!eyfa)
break;
}
if (!eyfa)
cout << "Not Eyfa" << endl;
else
cout << "Eyfa" << endl;
return 0;
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
[C++] 백준 1764번 : 듣보잡 (0) | 2019.09.28 |
---|---|
[C++] 백준 10809번: 알파벳 찾기 (0) | 2019.09.12 |
[C++] 백준 2799번: 블라인드 (0) | 2019.09.09 |
[C++] 백준 2839번: 설탕배달 (0) | 2019.09.06 |
[C++] 백준 10822번 : 더하기 (0) | 2019.09.04 |