일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코테
- 최소공배수
- 11057
- permutation
- 1182
- Combination
- 코틀린
- 매일11시
- itertools
- 백준
- 앱
- 파이썬
- 순열
- 괄호
- 홈화면
- expo
- Kotlin
- Android
- 11054
- LCS
- 11053
- lcm
- 1260
- 11기
- 9095
- 나머지
- Python
- 6603
- 안드로이드
- 뒤로가기
- Today
- Total
목록분류 전체보기 (181)
황소개발자
다이나믹을 푸는데에는 top down 방식과 bottom up 방식이 있다. 편한걸 고르고 풀어라 n = int(input()) dp = [0 for i in range(1001)] dp[1] = 1 dp[2] = 2 for i in range(3, n + 1): dp[i] = (dp[i - 1] + dp[i - 2]) % 10007 print(dp[n] % 10007)
다이나믹부터 푸는가? bfs 부터 풀고 다이나믹을 풀어라 당장. from collections import deque n = int(input()) dp = [-1 for i in range(1000001)] def bfs(v): global dp q = deque() q.append(v) dp[v] = 0 while q: now = q.popleft() if now == 1: return if now % 3 == 0 and dp[now // 3] == -1: dp[now // 3] = dp[now] + 1 q.append(now // 3) if now % 2 == 0 and dp[now // 2] == -1: dp[now // 2] = dp[now] + 1 q.append(now // 2) if now..
제가 처음에 짠 코드에서 놓친 반례는 9 7 D . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S 이런 단순한 반례였습니다. 수정하고 시간초과가 났었는데 콜렉션의 디큐를 사용해줬죠. 또 수정하고 메모리초과가 났었는데 이차원 배열을 두개 사용했었죠. 그래서 이중 배열 하나로 합쳤습니다. 큐에 일단 별들 위치 넣어주고, 마지막에 S위치 넣어줍니다. 그리고 그냥 bfs 돌리면 됩니다. 그러면 알아서 물 움직이고, 비버가 움직이는 시뮬레이션이 완성됩니다. 저의 정답 코드는 다음과 같습니다. 음수는 물이 도달하는 시간 * -1 값이고요, (이 ..
차등 벌금은 소득 또는 재산 수준에 따라서 벌금을 다르게 내는 제도이다. 쉽게 "부자는 벌금을 더 내라" 라고 말한다. -- 이 법은 부자들의 의도적이고 연속된 위법행위를 막기위해 나왔다. 이에 나는 기본적으로 찬성하는 입장이나, 처음 벌금은 같은 금액에서 시작하되, 연속된 위법행위가 발생한다면 재산/소득 수준에 벌금을 매기는 것이 바람직하다고 본다. --
빨리 성장하자 import sys input = sys.stdin.readline h, w = map(int, input().split()) miro = [[] for i in range(h)] dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] for i in range(h): ss = input().strip() for s in ss: miro[i].append(int(s)) dist = [[[0, 0] for j in range(w)] for i in range(h)] def bfs(y, x, wall): q = [[y, x, wall]] dist[y][x][wall] = 1 while q: now = q.pop(0) for i in range(4): y, x, z = now ny ..
고진감래다 import sys from collections import deque input = sys.stdin.readline w, h = map(int, input().split()) miro = [[] for i in range(h)] for i in range(h): ss = input().strip() for s in ss: miro[i].append(int(s)) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] ans = 999999999 def bfs(y, x): q = [[y, x]] nxtq = [] miro[y][x] = 2 while q: now = q.pop(0) for i in range(4): ny = now[0] + dy[i] nx = now[1] + d..
불가능이란 없다 n, k = map(int, input().split()) MAX = -1 dist = [-1 for i in range(100001)] def bfs(v): q = [v] dist[v] = 0 nxt_q = [] while q: now = q.pop(0) if now * 2
더 화이팅하자 s = int(input()) MAX = 999999999 time = [[MAX for i in range(1001)] for j in range(1001)] # 1, 0 def bfs(s, c): q = [[s, c]] time[s][c] = 0 while q: now = q.pop(0) s_now = now[0] c_now = now[1] if time[s_now][s_now] == MAX: time[s_now][s_now] = time[s_now][c_now] + 1 q.append([s_now, s_now]) if s_now + c_now = 0 and time[s_now - 1][c_now] == MAX: time[s_now - 1][c_now] = time[s_now][c_no..