Skip to content

Latest commit

 

History

History
32 lines (16 loc) · 1.31 KB

File metadata and controls

32 lines (16 loc) · 1.31 KB

[Bronze I] Olivander - 15366

문제 링크

성능 요약

메모리: 2020 KB, 시간: 0 ms

분류

구현, 정렬

제출 일자

2024년 8월 17일 07:24:14

문제 설명

Harry Potter has damaged his magic wand in a fight with Lord Voldemort. He has decided to get a new wand in Olivander's wand shop. On the floor of the shop, he saw N wands and N wand boxes. The lengths of the wands are, respectively, X1, X2, ...Xn, and the box sizes are Y1,Y2, ...Yn. A wand of length X can be placed in a box of size Y if X ≤ Y. Harry wants to know if he can place all the wands in boxes so that each box contains exactly one wand. Help him solve this difficult problem.

입력

The first line of input contains the positive integer N (1 ≤ N ≤ 100), the number from the task.

The second line contains N positive integers Xi (1 ≤ Xi ≤ 109), the numbers from the task.

The third line contains N positive integers Yi (1 ≤ Yi ≤ 109), the numbers from the task.

출력

If Harry can place all the wands in boxes, output “DA” (Croatian for yes), otherwise output “NE” (Croatian for no).