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
- sorting
- programmers
- udemy
- 따배씨
- Algospot
- graph
- 인프런
- php
- BFS
- C언어
- 따라하면서 배우는 C언어
- server
- C
- web
- greedy
- BOJ
- 따라하며 배우는 C언어
- String
- Python
- JavaScript
- 종만북
- 정수론
- 백준
- Math
- dfs
- Algorithm
- BASIC
- Cleancode
- DP
- 생활코딩
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 2143 / 두 배열의 합 / Python 파이썬 본문
[BOJ] 2143 / 두 배열의 합 / Python 파이썬
https://www.acmicpc.net/problem/2143
풀이
두 배열의 부분 배열의 합이 T 가 되는 경우의 수를 구하는 문제이다.
배열 A와 B 의 부분 배열의 합은 각각 구하여 이분탐색으로 경우의 수를 줄였고, 배열의 합을 탐색하는 방법은 두 포인터를 이용하였다.
T = int(input())
N = int(input())
n_list = list(map(int, input().split()))
check = {}
for i in range(N):
tmp = n_list[i]
if tmp not in check:
check[tmp] = 1
else:
check[tmp] += 1
for j in range(i+1, N):
tmp += n_list[j]
if tmp not in check:
check[tmp] = 1
else:
check[tmp] += 1
M = int(input())
m_list = list(map(int, input().split()))
res = 0
for i in range(M):
tmp = m_list[i]
if T-tmp in check:
res += check[T-tmp]
for j in range(i+1, M):
tmp += m_list[j]
if T-tmp in check:
res += check[T-tmp]
print(res)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 2632 / 피자판매 / 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