Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 우아한 테크 세미나
- 열혈 tcp/ip 프로그래밍
- Four Squares
- redis
- 2475번
- Window-Via-c/c++
- 10026번
- 우아한레디스
- BOJ
- inflearn
- 윤성우 저자
- HTTP
- 김영한
- n타일링2
- 제프리리처
- C#
- 에러핸들링
- 토마토
- Operating System.
- 스프링 입문
- OS
- 스프링 핵심 원리
- TCP/IP
- FIFO paging
- Spring
- Operating System
- 이펙티브코틀린
- 열혈 TCP/IP 소켓 프로그래밍
- C++
- 운영체제
Archives
- Today
- Total
나의 브을로오그으
[c++] 1654번 : 랜선 자르기 본문
https://www.acmicpc.net/problem/1654
#include <iostream>
#include <limits.h>
using namespace std;
int cutToLineCount(int* LANs, int line, int K)
{
int cnt = 0;
for (int i = 0; i < K; ++i)
{
cnt += LANs[i] / line;
}
return cnt;
}
int cutToLongestLine(int* LANs, int max, int K, int N)
{
if (cutToLineCount(LANs, max, K) >= N)
{
return max;
}
int begin = 1;
int end = max;
int line = 0;
while (begin < end)
{
line = begin + (end - begin) / 2;
if (cutToLineCount(LANs, line, K) < N)
{
end = line;
}
else
{
begin = line + 1;
}
}
return begin - 1;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int K = 0;
int N = 0;
int max = -1;
int line = 0;
cin >> K >> N;
int* LANs = new int[K];
for (int i = 0; i < K; ++i)
{
cin >> LANs[i];
max = max > LANs[i] ? max : LANs[i];
}
line = cutToLongestLine(LANs, max, K, N);
cout << line << '\n';
delete[] LANs;
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1920번 : 수 찾기 (0) | 2022.03.25 |
---|---|
[c++] 1874번 : 스택 수열 (0) | 2022.03.25 |
[c++] 1436번 : 영화감독 숌 (0) | 2022.03.22 |
[c++] 1259번 : 팰린드롬 수 (0) | 2022.03.22 |
[c++] 1181번 : 단어 정렬 (0) | 2022.03.20 |