일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 문자열
- 자바스크립트
- NEXT
- tensorflow
- lazy propagation
- BFS
- DP
- 백트래킹
- 미래는_현재와_과거로
- 조합론
- dfs
- 세그먼트 트리
- 회고록
- Overfitting
- pytorch
- 크루스칼
- 다익스트라
- 플로이드 와샬
- back propagation
- c++
- 분할 정복
- object detection
- dropout
- 2023
- 우선 순위 큐
- 가끔은 말로
- 이분 탐색
- 너비 우선 탐색
- 가끔은_말로
Archives
- Today
- Total
Doby's Lab
백준 12760번: 최후의 승자는 누구? (C++) 본문
https://www.acmicpc.net/problem/12760
Solved By: Sort
매 판마다 플레이어들은 제일 큰 카드를 내기 때문에 각 플레이어 column마다 정렬을 해준다.
그리고 column마다 제일 최댓값을 가지는 index의 점수를 +1 하고, 마지막에 어떤 index의 점수가 가장 높은지 오름차순으로 출력한다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#define MAX 101
using namespace std;
int n, m;
bool cmp(int a, int b){
return a > b;
}
int main(){
ios_base::sync_with_stdio(false);
cin >> n >> m;
vector<vector<int>> score(n + 1, vector<int>(m + 1, 0));
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
cin >> score[i][j];
}
}
for(int i = 1; i <= n; i++){
sort(score[i].begin() + 1, score[i].end(), cmp);
}
vector<int> player(n + 1, 0);
for(int i = 1; i <= m; i++){
int maxScore = 0;
stack<int> s;
for(int j = 1; j <= n; j++){
if(score[j][i] > maxScore){
maxScore = score[j][i];
while(!s.empty()) s.pop();
s.push(j);
}
else if(score[j][i] == maxScore){
s.push(j);
}
}
while(!s.empty()){
player[s.top()]++;
s.pop();
}
}
int maxValue = 0;
for(int i = 1; i < player.size(); i++){
maxValue = max(maxValue, player[i]);
}
for(int i = 1; i < player.size(); i++){
if(maxValue == player[i]) cout << i << ' ';
}
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
백준 1351번: 무한 수열 (C++) (0) | 2022.10.30 |
---|---|
백준 14221번: 편의점 (C++) (0) | 2022.10.19 |
백준 1854번: K번째 최단경로 찾기 (C++) (1) | 2022.08.24 |
백준 13306번: 트리 (C++) (0) | 2022.08.13 |
백준 1305번: 광고 (C++) (0) | 2022.08.10 |