-
Notifications
You must be signed in to change notification settings - Fork 0
/
baekjoon16401.py
206 lines (146 loc) · 4.11 KB
/
baekjoon16401.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
### [1번째 시도] 과자 나눠주기
import numpy as np
import copy
m, n = map(int, input().split())
l = list(map(int, input().split()))
assert len(l)==n
l = np.array(l)
def how_many(length, l):
"""
length 길이의 과자는 몇 개 만들 수 있는가!
"""
total=0
# list는 이렇게 안하면 아래 길이 줄이는 거에서 inplace로 계속 리스트가 업데이트돼버림
l = copy.deepcopy(l)
while True:
if sum(length<=l)<1:
return total
else:
total += sum(length<=l)
l-= length
start = 0
end = max(l)
optimal_l = 0
while True:
mid = (start+end)//2
print('길이', mid)
print('몇개 줄 수 있어?', how_many(mid, l))
if start>end:
print('다 끝났어 빠빠이')
break
if how_many(mid, l)>=m:
print(f'{m}명 충분히 줄 수 있어 더 큰건 없나?')
input()
if optimal_l < mid:
optimal_l = mid
start = mid+1 # 더 큰것도 되는지는 보자
elif how_many(mid, l)<m:
print(f'{m}명 다 못줘 길이 좀 줄이자')
input()
end = mid-1
print(optimal_l)
### [2번째 시도] numpy 제거(?)
import copy
m, n = map(int, input().split())
l = list(map(int, input().split()))
assert len(l)==n
def how_many(length, l):
"""
length 길이의 과자는 몇 개 만들 수 있는가!
"""
total=0
# list는 이렇게 안하면 아래 길이 줄이는 거에서 inplace로 계속 리스트가 업데이트돼버림
l = copy.deepcopy(l)
for i in l:
if i >= length:
total += i//length
return total
# while True:
# # how_many_left = sum([length<=i for i in l])
# how_many_left = len(l)
# if how_many_left<1:
# return total
# else:
# total += how_many_left
# l = [i-length for i in l if length<=i]
start = 0
end = max(l)
optimal_l = 0
while True:
mid = (start+end)//2
if start>end or mid ==0:
break
if how_many(mid, l)>=m:
if optimal_l < mid:
optimal_l = mid
start = mid+1 # 더 큰것도 되는지는 보자
elif how_many(mid, l)<m:
end = mid-1
print(optimal_l)
##### [3번째 시도] 최종 제출 코드 #####
m, n = map(int, input().split())
l = list(map(int, input().split()))
def how_many(length, l):
total=0
for i in l:
if i>=length:
total += i//length
return total
start = 0
end = max(l)
optimal_l = 0
while True:
mid = (start+end)//2
if start>end or mid ==0:
break
if how_many(mid, l)>=m:
if optimal_l < mid:
optimal_l = mid
start = mid+1
elif how_many(mid, l)<m:
end = mid-1
print(optimal_l)
## [4번째 시도] 추가 제출 (함수 없애고 코드 안에 직접 연산)->메모리/시간 다 줄어들었음
m, n = map(int, input().split())
l = list(map(int, input().split()))
start = 0
end = max(l)
optimal_l = 0
while True:
mid = (start+end)//2
if start>end or mid ==0:
break
total = 0
for i in l:
if i >= mid:
total += i//mid
if total>=m:
if optimal_l < mid:
optimal_l = mid
start = mid+1
elif total<m:
end = mid-1
print(optimal_l)
## [5번째 시도] 추가 제출 (입력을 sys.stdin으로 받고, // 대신 int(연산결과) 사용)-> 후자가 시간을 대폭 줄여줌..!
## 추가로, total>=m일때 if문 지워줌. 어차피 optimal_l보다 큰 mid일 것.
import sys
m, n=map(int, sys.stdin.readline().split())
l=list(map(int, sys.stdin.readline().split()))
start = 1
end = max(l)
optimal_l = 0
while True:
mid = int((start+end)/2)
if start>end:
break
total = 0
for i in l:
if i >= mid:
total += i//mid
if total>=m:
if optimal_l < mid: # 이 if문 삭제하면 python 코드 중 가장 성적 좋아짐!
optimal_l = mid
start = mid+1
elif total<m:
end = mid-1
print(optimal_l)