일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 정수론
- 플로이드-워셜
- 구현
- 해시 테이블
- 트리
- boj
- BFS
- 그리디
- 13164
- 싸피
- 에라토스테네스의 체
- 브루트포스
- Python
- 그래프
- DFS
- JavaScript
- 세그먼트 트리
- 애드 혹
- DP
- 2357
- 이분 탐색
- 문자열
- 누적 합
- 맵
- 모던 JavaScript 튜토리얼
- 수학
- SSAFY
- 정렬
- 슬라이딩 윈도우
- 투 포인터
- Today
- Total
목록전체 글 (271)
흙금이네 블로그
아이디어 각 칸에서 획득하는 점수를 계산한 후 주사위가 이동할 때마다 주사위 상태를 변경하며 점수를 더해 나간다. 풀이 import sys input = sys.stdin.readline delta = [(0, 1), (1, 0), (0, -1), (-1, 0)] turned = [ (3, 1, 0, 5, 4, 2), (1, 5, 2, 3, 0, 4), (2, 1, 5, 0, 4, 3), (4, 0, 2, 3, 5, 1) ] def solution(): N, M, K = map(int, input().split()) board = [tuple(map(int, input().split())) for _ in range(N)] scores = [[0]*M for _ in range(N)] for i in r..
아이디어 책의 무게를 더해 나가며 무게 합이 최대 무게 M을 넘으면 박스의 개수를 1 증가시킨다. 풀이 def solution(): N, M = map(int, input().split()) res = 0 if N > 0: boxes = tuple(map(int, input().split())) w = 0 res = 1 for i in range(N): temp = w+boxes[i] if temp > M: w = boxes[i] res += 1 else: w = temp print(res) solution()
아이디어 #1 덱을 이용하여 수를 지워 나간다. 풀이 #1 import sys from collections import deque input = sys.stdin.readline def solution(): T = int(input()) for t in range(T): p = input().rstrip() n = int(input()) x = deque(input().rstrip()[1:-1].split(',')) if n == 0: x.clear() r = False for c in p: if c == 'R': r = ~r else: if x: if r: x.pop() else: x.popleft() else: print('error') break else: if r: print(f"[{','.jo..