Recent Posts
Notice
No Rules Rules
3대 측정 (feat. 백준, 20299번) 본문
728x90
반응형
3대 측정
https://www.acmicpc.net/problem/20299
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <queue>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, K, L;
queue<int> ans;
cin >> N >> K >> L;
for(register int n = 1, a, b, c; n <= N; ++n){
cin >> a >> b >> c;
if(a + b + c >= K && a >= L && b >= L && c >= L)
ans.push(a), ans.push(b), ans.push(c);
}
cout << ans.size() / 3 << "\n";
while(!ans.empty())
cout << ans.front() << " ", ans.pop();
return 0;
}
// *&)*@*
반응형
K와 L의 조건이 모두 부합하는 팀원이 있는 팀만 답이 되므로, 결국 팀의 개수는 조건에 부합하는 팀원의 /3 만큼이 됩니다. 따라서 별도의 카운팅은 필요하지 않습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
신입 사원 (feat. 백준, 1946번) (0) | 2022.10.19 |
---|---|
회전 초밥 (feat. 백준, 15961번) (0) | 2022.10.18 |
방어율 무시 계산하기 (feat. 백준, 25756번) (0) | 2022.10.17 |
게리맨더링 (feat. 백준, 17471번) (0) | 2022.10.11 |
여행 가자 (feat. 백준, 1976번) (0) | 2022.10.07 |
Comments