Recent Posts
Notice
No Rules Rules
방 배정 (feat. 백준, 13300번) 본문
728x90
반응형
방 배정
https://www.acmicpc.net/problem/13300
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <math.h>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, K, arr[6][2]{0}, ans = 0;
cin >> N >> K;
for(register int n = 0, s, y; n < N; ++n){
cin >> s >> y;
++arr[y - 1][s];
}
for(auto& v1 : arr)
for(auto& v2 : v1)
if(v2)
ans += static_cast<int>(ceil(v2 / static_cast<double>(K)));
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
다리 만들기 2 (feat. 백준, 17472번) (0) | 2023.03.02 |
---|---|
색종이 (feat. 백준, 10163번) (0) | 2023.02.28 |
다리 만들기 (feat. 백준, 2146번) (0) | 2023.02.28 |
알고리즘 수업 - 알고리즘의 수행 시간 6 (feat. 백준, 24267번) (0) | 2023.02.28 |
색종이 - 2 (feat. 백준, 2567번) (0) | 2023.02.27 |
Comments