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
- COSPRO
- DFS
- 우선순위큐
- spring
- 재귀함수
- 01BFS
- COSPROJAVA1급
- GatherTown
- deque
- 완전탐색
- 구현
- java
- 시뮬레이션
- 게더타운시작
- 백준코딩테스트
- 세그먼트트리
- 다이나믹프로그래밍
- 자바PS
- 이젠 골드구현도 어렵네..
- 백준
- BFS
- PS
- 취득후기
- 다익스트라
- YBMCOS
- dp
- QUICKSTARTGUIDE
- 네트워크플로우
- 엘라스틱서치
- 알고리즘
Archives
- Today
- Total
공부공간
BOJ-11723 ) 집합 본문
https://www.acmicpc.net/problem/11723
입력받는 수의 범위가 1-20이므로 그냥 구현해주면된다.
package algorithm_2022;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class BOJ_11723 {
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int S[] = new int[21];
StringBuilder sb = new StringBuilder();
for(int i=0;i<N;i++) {
st = new StringTokenizer(br.readLine());
String order = st.nextToken();
if(order.equals("all")||order.equals("empty")) {
if(order.equals("all")) {
for(int j=1;j<=20;j++) {S[j] =1;}
} else {
for(int j=1;j<=20;j++) {S[j] =0;}
}
} else {
int num = Integer.parseInt(st.nextToken());
if(order.equals("add")) {
S[num]=1;
} else if(order.equals("remove")) {
S[num]=0;
} else if(order.equals("toggle")) {
S[num]=(S[num]==1 ? 0:1);
} else {
// check
if(S[num]==1) {
sb.append("1\n");
} else {
sb.append("0\n");
}
}
}
}
br.close();
System.out.println(sb.toString());
}
}
'알고리즘' 카테고리의 다른 글
BOJ-1074 ) Z (0) | 2022.02.13 |
---|---|
BOJ-2630 ) 색종이 만들기 (0) | 2022.02.08 |
BOJ-1021 ) 회전하는 큐 (1) | 2022.02.03 |
Comments