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 | 29 | 30 |
Tags
- Team Fortress 2
- 다이나믹 프로그래밍
- BFS
- 시뮬레이션
- 문자열
- 그리디 알고리즘
- 알고리즘
- 정렬
- Unreal Engine 5
- 자료구조
- 수학
- 백준
- 재귀
- c++
- 그래프
- ue5
- 백트래킹
- 구현
- 트리
- 유니온 파인드
- 브루트포스
- VR
- 누적 합
- 다익스트라
- XR Interaction Toolkit
- DFS
- 우선순위 큐
- 투 포인터
- 스택
- 유니티
Archives
- Today
- Total
1일1알
백준 11504번 돌려 돌려 돌림판! C++ 본문
https://www.acmicpc.net/problem/11504
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int t;
vector<char> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> t;
while (t--) {
int n, m;
cin >> n >> m;
v = vector<char>(n);
string X = "";
string Y = "";
for (int i = 0; i < m; i++) {
char c;
cin >> c;
X += c;
}
for (int i = 0; i < m; i++) {
char c;
cin >> c;
Y += c;
}
for (int i = 0; i < n; i++) {
cin >> v[i];
}
int cnt = 0;
for (int i = 0; i < n; i++) {
string str = "";
for (int j = 0; j < m; j++) {
int idx = (i + j) % n;
str += v[idx];
}
if (X <= str && Y >= str) cnt++;
}
cout << cnt << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 10655번 마라톤 1 C++ (0) | 2023.04.08 |
---|---|
백준 9081번 단어 맞추기 C++ (0) | 2023.04.07 |
백준 15787번 기차가 어둠을 헤치고 은하수를 C++ (0) | 2023.04.05 |
백준 9518번 로마 카톨릭 미사 C++ (1) | 2023.04.04 |
백준 11578번 팀원 모집 C++ (0) | 2023.03.30 |