반응형
[Silver V] 집합 - 11723
성능 요약
메모리: 301704 KB, 시간: 1968 ms
분류
비트마스킹, 구현
제출 일자
2024년 10월 15일 16:12:04
문제 설명
비어있는 공집합 S가 주어졌을 때, 아래 연산을 수행하는 프로그램을 작성하시오.
add x
: S에 x를 추가한다. (1 ≤ x ≤ 20) S에 x가 이미 있는 경우에는 연산을 무시한다.remove x
: S에서 x를 제거한다. (1 ≤ x ≤ 20) S에 x가 없는 경우에는 연산을 무시한다.check x
: S에 x가 있으면 1을, 없으면 0을 출력한다. (1 ≤ x ≤ 20)toggle x
: S에 x가 있으면 x를 제거하고, 없으면 x를 추가한다. (1 ≤ x ≤ 20)all
: S를 {1, 2, ..., 20} 으로 바꾼다.empty
: S를 공집합으로 바꾼다.
입력
첫째 줄에 수행해야 하는 연산의 수 M (1 ≤ M ≤ 3,000,000)이 주어진다.
둘째 줄부터 M개의 줄에 수행해야 하는 연산이 한 줄에 하나씩 주어진다.
출력
check
연산이 주어질때마다, 결과를 출력한다.
제출코드
// https://www.acmicpc.net/problem/11723
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int M = Integer.parseInt(br.readLine());
int[] all = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
Set<Integer> s = new HashSet<>();
for(int i = 0; i < M; i++){
String[] query = br.readLine().split(" ");
if("add".equals(query[0])){
s.add(Integer.parseInt(query[1]));
} else if ("remove".equals(query[0])){
s.remove(Integer.parseInt(query[1]));
} else if("empty".equals(query[0])){
s.clear();
} else if("all".equals(query[0])){
s = new HashSet<Integer>(){{Arrays.stream(all).forEach(x->add(x));}};
} else if(s.contains(Integer.parseInt(query[1]))){
if("toggle".equals(query[0])){
s.remove(Integer.parseInt(query[1]));
}else if("check".equals(query[0])){
bw.write("1\n");
}
} else {
if("toggle".equals(query[0])){
s.add(Integer.parseInt(query[1]));
}else if("check".equals(query[0])){
bw.write("0\n");
}
}
}
bw.flush();
br.close();
bw.close();
}
}
728x90
반응형
'코딩 테스트 정복기 > 백준' 카테고리의 다른 글
[백준/Silver III] 1, 2, 3 더하기 - 9095 (0) | 2024.10.16 |
---|---|
[백준/Silver III] 피보나치 함수 - 1003 (0) | 2024.10.16 |
[백준/Silver I] 구간 합 구하기 5 - 11660 (1) | 2024.10.15 |
[백준/Silver III] 1로 만들기 - 1463 (0) | 2024.10.14 |
[백준/Silver II] DFS와 BFS - 1260 (0) | 2024.10.08 |