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
- codingtest
- django
- vuejs
- Python
- 동적계획법과최단거리역추적
- 파이썬
- issue
- DFS와BFS
- android
- Algorithm
- 코테
- cos pro
- 동적계획법
- cos pro 1급
- C++
- cos
- DFS
- Vue
- 안드로이드스튜디오
- 분할정복
- 개발
- 알고리즘
- 안드로이드
- 코딩테스트
- AndroidStudio
- 코드품앗이
- Flutter
- 백준
- DART
- BAEKJOON
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 3차 10번 : 밥먹고 머리자르고 본문
728x90
반응형
문제 유형
빈칸
난이도
easy
Note
1. 파이썬의 Class, def, self
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
class Customer:
def __init__(self, id, time, num_of_people):
self.id = id
self.time = time
self.num_of_people = num_of_people
class Shop:
def __init__(self):
self.reserve_list = []
def reserve(self, customer):
self.reserve_list.append(customer)
return True
class HairShop(Shop):
def __init__(self):
super().__init__()
def reserve(self, customer):
if customer.num_of_people != 1:
return False
for r in self.reserve_list:
if r.time == customer.time:
return False
self.reserve_list.append(customer)
return True
class Restaurant(Shop):
def __init__(self):
super().__init__()
def reserve(self, customer):
if (2 <= customer.num_of_people <= 8) != True:
return False
count = 0
for r in self.reserve_list:
if r.time == customer.time:
count += 1
if count >= 2:
return False
self.reserve_list.append(customer)
return True
def solution(customers, shops):
hairshop = HairShop()
restaurant = Restaurant()
count = 0
for customer, shop in zip(customers, shops):
if shop == "hairshop":
if hairshop.reserve(Customer(customer[0], customer[1], customer[2])):
count += 1
elif shop == "restaurant":
if restaurant.reserve(Customer(customer[0], customer[1], customer[2])):
count += 1
return count
customers = [[1000, 2, 1],[2000, 2, 4],[1234, 5, 1],[4321, 2, 1],[1111, 3, 10]]
shops = ["hairshop", "restaurant", "hairshop", "hairshop", "restaurant"]
ret = solution(customers, shops)
print("solution 함수의 반환 값은", ret, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 4차 2번 : 문자열 압축 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 4차 1번 : 사전에서 단어찾기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 9번 : 팝업 스토어를 열 최적의 날짜 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 8번 : 선풍기를 몇대 사야 하나요 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 7번 : 카프리카 수 (0) | 2022.02.25 |
Comments