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 | 31 |
Tags
- backend
- error
- 멘토링
- 자바
- 코딩테스트
- FLAB
- MySQL
- EC2
- 데이터구조
- nGrinder
- 트러블슈팅
- 부트캠프
- redis
- 자바백엔드
- AWS
- Flutter
- 도커
- java
- 레디스
- 백엔드
- 로드밸런서
- 성능테스트
- 후기
- grafana
- F-Lab
- 알고리즘
- 플러터
- github
- 에프랩
- Spring
Archives
- Today
- Total
민스씨의 일취일장
Java | 백준 11328 Strfry 풀이 전략 기록 본문
반응형
백준 11328 Strfry 풀이 전략 기록 [🥉 브론즈 II ]
문제 해결 포인트
- 주어진 두 문자열이 같은 종류와 같은 수의 문자를 갖고 있는지 확인해야 한다.
같은 종류와 수가 같아야 하는 이유는 문자의 종류가 같더라도 개수가 다르면 안됨을 뜻한다. 즉 두 문자열의 길이가 언제나 같아야 한다.
사용한 전략
- 알파벳 종류 수 길이의 정수 배열을 생성 후 '알파벳 캐릭터'-'a'를 인덱스 값으로 활용해 문자의 수와 종류를 한 번에 기록했다.
코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Strfry11328 {
static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer st;
static int N;
static void input() throws IOException{
N = Integer.parseInt(br.readLine());
for(int i=0; i<N; i++){
execute();
}
};
static void execute() throws IOException{
st = new StringTokenizer(br.readLine());
String ref = st.nextToken();
String test = st.nextToken();
int[] chrArr = new int['z'-'a'+1];
for(int i=0; i<ref.length(); i++){
chrArr[ref.charAt(i)-'a']++;
}
for(int i=0; i<test.length(); i++){
chrArr[test.charAt(i)-'a']--;
}
for(int i=0; i< chrArr.length; i++){
if(chrArr[i]!=0){
System.out.println("Impossible");
return;
}
}
System.out.println("Possible");
}
public static void main(String[] args) throws IOException{
input();
}
}
728x90
반응형
'Data Structure & Algorithm > Java' 카테고리의 다른 글
Java | 백준 11724 연결 요소의 개수 (0) | 2024.02.08 |
---|---|
Java | 백준 26169 세 번 이내에 사과를 먹자 문제풀이 및 분석 (0) | 2024.02.08 |
Java | 백준 1388 바닥 장식 문제풀이 및 분석 (0) | 2024.02.07 |
Java | 백준 13300 방배정 풀이 전략 기록 (0) | 2023.08.09 |
알고리즘 | 백준 | 자바 | 숫자 10093 틀렸습니다 30점 해결하기 (0) | 2023.06.22 |