티스토리 뷰
package com.ssafy.startcamp;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
public class Solution_D3_1213_String_오동규 {
public static void main(String[] args) throws Exception {
//System.setIn(new FileInputStream("1213_input.txt"));
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
for (int test_case = 1; test_case <= 10; test_case++) {
int T;
T = Integer.parseInt(in.readLine());
sb.append("#" + test_case + " ");
String word = in.readLine();
String task = in.readLine();
int wordCount = 0;
for (int i = 0; i < task.length(); i++) {
if (task.charAt(i) == word.charAt(0)) {
if (word.length() + i > task.length())
break;
boolean flag = true;
for (int j = i; j < i + word.length(); j++) {
if (task.charAt(j) != word.charAt(j - i)) {
flag = false;
break;
}
}
if (flag == true) {
wordCount++;
}
}
}
sb.append(wordCount + "\n");
}
System.out.println(sb);
}
}
for (int i = 0; i < task.length(); i++) {
if (task.charAt(i) == word.charAt(0)) {
if (word.length() + i > task.length())
break;
탐색 범위가 task 배열 길이를 초과했을 때 중단하는 코드로 이런식으로 작성했지만 아래와 같이 하면 더 깔끔함
for (int i = 0; i <= task.length() - word.length(); i++) {
if (task.charAt(i) == word.charAt(0)) {
'PS' 카테고리의 다른 글
| [백준] 3986번 좋은 단어 [JAVA] (0) | 2024.01.17 |
|---|---|
| [백준] 16120번 PPAP [JAVA] (0) | 2024.01.17 |
| [SWEA] 1204 최빈수 구하기 (0) | 2024.01.11 |
| [백준] 12026번 BO 거리 C++ (0) | 2023.01.22 |
| [백준] 25187번 고인물이 싫어요 C++ (0) | 2023.01.20 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C++
- 중위 표기식 후위 표기식으로 변환
- 백준
- 1918
- 6018
- 1738
- 골목길
- 소셜네트워킹어플리케이션
- 11657
- 타임머신
- 6539
- 상범빌딩
- tea time
- 골목길C++
- 스택
- 벨만-포드
- 어린왕자 C++
- 1004
- 벨만포드
- 7511
- 후위 표기식
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
글 보관함
