문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/86491
맞힌 코드
#include <bits/stdc++.h>
using namespace std;
int solution(vector<vector<int>> sizes) {
int w = 0;
int h = 0;
for (int i=0; i<sizes.size(); i++){
if (sizes[i][0]<sizes[i][1]){
int temp = sizes[i][0];
sizes[i][0] = sizes[i][1];
sizes[i][1] = temp;
}
if (sizes[i][0]>w)
w = sizes[i][0];
if (sizes[i][1]>h)
h = sizes[i][1];
}
return w*h;
}
'Algorithm' 카테고리의 다른 글
[프로그래머스] 42842번 카펫 C++ (0) | 2024.11.13 |
---|---|
[프로그래머스] 42747번 H-Index C++ (0) | 2024.11.13 |
[프로그래머스] 42748번 K번째수 C++ (0) | 2024.11.12 |
[프로그래머스] 1844번 게임 맵 최단거리 C++ (0) | 2024.11.11 |
[백준/BOJ] 20125번 쿠키의 신체 측정 C++ (0) | 2024.11.07 |