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
- JavaScript
- udemy
- 종만북
- greedy
- C언어
- programmers
- 인프런
- 따라하며 배우는 C언어
- 생활코딩
- graph
- 따배씨
- dfs
- Cleancode
- Python
- Algospot
- C
- 따라하면서 배우는 C언어
- BASIC
- Math
- BFS
- 정수론
- server
- php
- BOJ
- sorting
- String
- web
- Algorithm
- 백준
- DP
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 2632 / 피자판매 / Python 파이썬 본문
[BOJ] 2632 / 피자판매 / Python 파이썬
https://www.acmicpc.net/problem/2632
풀이
피자 A 와 B 를 원형 queue 로 설정하고, 이분탐색으로 경우의 수를 구하여 해결하였다.
import sys
input = sys.stdin.readline
BUY = int(input())
M, N = map(int, input().split())
A = []
for _ in range(M):
A.append(int(input()))
B = []
for _ in range(N):
B.append(int(input()))
A_dic = {}
A_dic[0] = 1
A_dic[sum(A)] = 1
for l in range(1, M):
s = 0
e = s+l
tmp = sum(A[s:e])
while s < M:
if tmp not in A_dic:
A_dic[tmp] = 1
else:
A_dic[tmp] += 1
tmp -= A[s]
s += 1
tmp += A[e]
e += 1
if e >= M:
e %= M
res = 0
if BUY in A_dic:
res += A_dic[BUY]
if BUY - sum(B) in A_dic:
res += A_dic[BUY-sum(B)]
for l in range(1, N):
s = 0
e = s+l
tmp = sum(B[s:e])
while s < N:
if BUY - tmp in A_dic:
res += A_dic[BUY-tmp]
tmp -= B[s]
s += 1
tmp += B[e]
e += 1
if e >= N:
e %= N
print(res)
※ 쉽게 푼것처럼 설명이 짧았지만, 처음으로 해결한 골드1 문제이다 (무려!!)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 2143 / 두 배열의 합 / Python 파이썬 (0) | 2021.08.22 |
---|---|
[BOJ] 7453 / 합이 0인 네 정수 / Python 파이썬 (0) | 2021.08.22 |
[BOJ] 1208 / 부분수열의 합 2 / Python 파이썬 (0) | 2021.08.22 |
[BOJ] 1261 / 알고스팟 / Python 파이썬 (0) | 2021.08.12 |
[BOJ] 1806 / 부분 합 / Python 파이썬 (0) | 2021.08.12 |
Comments