어디까지 갈 수 있을까?
[이분탐색] 백준 7795 먹을 것인가 먹힐 것인가 본문
문제링크 www.acmicpc.net/problem/2110
이분탐색 진리의 라이브러리 bisect를 사용하자
[답코드]
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import sys
from bisect import bisect_left, bisect_right
input=sys.stdin.readline
for _ in range(int(input())):
n, m=map(int, input().split())
a=list(map(int, input().split()))
b=list(map(int, input().split()))
a.sort()
count=0
for i in b:
count+=len(a)-bisect_right(a, i)
print(count)
|
cs |
728x90
'알고리즘 > 문제' 카테고리의 다른 글
[플로이드 워셜] 백준 2224 명제 증명 (0) | 2021.02.27 |
---|---|
[플로이드 워셜] 백준 11403 경로 찾기 (0) | 2021.02.27 |
[BFS/DFS] 백준 2606 바이러스 (0) | 2021.02.17 |
[DP] 백준 2193 이친수 (0) | 2021.02.10 |
[그리디] 백준 1783 병든 나이트 (0) | 2021.02.10 |
Comments