□ 내가 작성한 소스코드
void numberCardGame(){
int n,m;
int max = 0; //행들의 가장 작은 값들 중 가장 큰 값
cin>> n>>m;
for(int i=0;i<n;i++){
int minInRow = 99999;
//행에서 가장 작은 값을 입력받고 찾는 구문
for(int j=0;j<m;j++){
int input;
cin>> input;
minInRow = min(minInRow,input);
}
// 행에서 가장 작은 값들 중 가장 큰 값을 찾는 구문
if( max < minInRow){
max = minInRow;
}
}
cout<< max<<endl;
}
'알고리즘 > Greedy' 카테고리의 다른 글
백준[11399] ATM (0) | 2023.01.05 |
---|---|
백준[1931] 회의실 배정 (0) | 2023.01.05 |
백준[11047] 코인0 (0) | 2023.01.05 |
1이 될때 까지 (0) | 2023.01.05 |
큰 수의 법칙 (0) | 2023.01.04 |