일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 깊이 우선 탐색
- 그래프탐색
- 냅색 알고리즘
- 너비 우선 탐색
- 파이썬
- 배낭 문제
- 최장공통부분문자열
- dfs
- bfs
- db replication
- Container vs VM
- 수학
- 일단 시도
- 구현
- 문자열
- LCS 알고리즘
- 정처기 필기
- 그래프 이론
- Docker 원리
- lazy evaluation
- 나는 바보야...
- npm start
- 최장공통부분수열
- 그래프 탐색
- 다이나믹 프로그래밍
- error:0308010C:digital envelope routines::unsupported
- 동적 계획법
- 클래스
- 모듈러 연산 분배법칙
Archives
- Today
- Total
목록딕셔너리 (1)
Save my data
백준 1620 : 나는야 포켓몬 마스터 이다솜 (파이썬)
너무 쉬운 문제인데 생각이 마치 어딘가 막힌 것 처럼 한 30분 넘게 붙잡고 있었던 것 같다. import sys N, M = map(int, sys.stdin.readline().split()) pokemon_name = {} pokemon_num = {} for i in range(1, N + 1): name = sys.stdin.readline().strip() pokemon_name[name] = str(i) pokemon_num[str(i)] = name for _ in range(M): q = sys.stdin.readline().strip() if q in pokemon_name: print(pokemon_name[q]) else: print(pokemon_num[q]) 딕셔너리를 두 개 만..
알고리즘/백준
2023. 3. 15. 01:09