Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- cos pro 1급
- 개발
- 백준
- Algorithm
- 코테
- issue
- android
- cos
- Flutter
- 안드로이드
- 코딩테스트
- 동적계획법과최단거리역추적
- Vue
- DFS
- BAEKJOON
- 알고리즘
- 코드품앗이
- AndroidStudio
- 분할정복
- DFS와BFS
- DART
- codingtest
- Python
- 안드로이드스튜디오
- 동적계획법
- 파이썬
- django
- vuejs
- cos pro
- C++
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 5차 5번 : 몬스터 잡기 본문
728x90
반응형
문제 유형
코딩
난이도
hard
Note
1. '가능 강력한 아군이 이길 수 있는 적군의 수가 최대로 이길 수 있는 적군의 수'라는 것을 아는 것이 매우 중요.
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
def solution(enemies, armies):
answer = 0
enemies.sort(reverse=True)
armies.sort(reverse=True)
for i in armies:
n = 0
for j in enemies:
if i >= j:
n += 1
answer = max(n, answer)
return answer
enemies1 = [1, 4, 3]
armies1 = [1, 3]
ret1 = solution(enemies1, armies1)
print("solution 함수의 반환 값은", ret1, "입니다.")
enemies2 = [1, 1, 1]
armies2 = [1, 2, 3, 4]
ret2 = solution(enemies2, armies2)
print("solution 함수의 반환 값은", ret2, "입니다.")
두번째 코드
def solution(enemies, armies):
answer = 0
enemies.sort()
armies.sort(reverse=True)
len_armies = len(armies)
len_enemies = len(enemies)
for i in armies:
for j in range(len_enemies-1, -1, -1):
jv = enemies[j]
len_enemies -= 1
if i >= jv and len_armies > 0 and len_enemies >= 0:
len_armies -= 1
answer += 1
break
return answer
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 5차 7번 : 그래프에서 싸이클 찾기 (0) | 2022.02.28 |
---|---|
[COS Pro 1급, Python] 5차 6번 : p진법 to q진법 (0) | 2022.02.28 |
[COS Pro 1급, Python] 5차 4번 : 각 숫자가 몇개가 있나요 (0) | 2022.02.28 |
[COS Pro 1급, Python] 5차 3번 : 배열의 사전순 정렬 (0) | 2022.02.28 |
[COS Pro 1급, Python] 5차 2번 : 물을 최대로 담고 싶어요 (0) | 2022.02.28 |
Comments