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
- 백준 16236
- Spring
- JVM
- spring cloud
- 백준 17626
- 백준 15685
- 백준 파이썬
- 파이썬
- 프로래머스
- with recursive
- java
- springboot
- 백준 17779
- re.split
- Spring Boot
- MSA
- Kotlin
- 백준 16235
- spring oauth
- java 기술면접
- sql 기술면접
- spring security
- 백준 19238
- 웹어플리케이션 서버
- 백준
- MySQL
- 백준 16719
- 프로그래머스
- JPA
- Coroutine
Archives
- Today
- Total
시작이 반
[백준] 15787번번번 (python 파이썬) 본문
SMALL
구현문제이다.
처음 구현한 방법은
2차원 배열을 사용하여 해당명령을 수행하고
명령을 다 수행했으면
2차원 배열들을 문자열로 바꿔 ( ex: [[1, 0, 0, 1], [0, 1, 1, 0]] -> [ '1001, '0110' ] ) 모든 기차들을 다 비교하였다.
-> 시간초과
두번째 방법은
비트 연산을 사용하여 명령을 수행하였고
visited[False] 배열을 사용하여 중복 값을 체크하였다.
import sys
input = sys.stdin.readline
n, m = map(int, input().split(' '))
trains = [0] * (n + 1)
commands = [list(map(int, input().split(' '))) for _ in range(m)]
visited = [False] * (2 ** 22)
def conduct(trains):
for i in range(m):
if commands[i][0] == 1:
train_n = commands[i][1]
seat = commands[i][2] - 1
trains[train_n] = trains[train_n] | (1 << seat)
elif commands[i][0] == 2:
train_n = commands[i][1]
seat = commands[i][2] - 1
trains[train_n] = trains[train_n] & ~(1 << seat)
elif commands[i][0] == 3:
train_n = commands[i][1]
trains[train_n] = trains[train_n] << 1
trains[train_n] = trains[train_n] & ~(2 ** 20)
elif commands[i][0] == 4:
train_n = commands[i][1]
trains[train_n] = trains[train_n] >> 1
def vailTrain():
count = 0
for i in range(1, n + 1):
if not visited[trains[i]]:
count += 1
visited[trains[i]] = True
return count
conduct(trains)
print(vailTrain())
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 20164번 (python 파이썬) (0) | 2021.04.05 |
---|---|
[백준] 20207번 (python 파이썬) (0) | 2021.04.05 |
[백준] 17276번번번 (python 파이썬) (0) | 2021.04.01 |
[백준] 2615번번 (python 파이썬) (2) | 2021.03.31 |
[백준] 16926번번 (python 파이썬) (0) | 2021.03.30 |