Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준 c++ 2870번
- 백준 1103번 게임
- 백준 1103번
- Lv2
- 오브젝트 풀링
- 백준 17070번 c++
- 백준
- 유니티
- 2468 c++
- 2870번 수학숙제
- 백준 17070번
- Unity
- 2870번 수학숙제 c++
- Algorithm
- 플레이어 이동
- C#
- 프로그래머스
- 2870번
- Beakjoon
- 백준 1103번 c++
- Lv.3
- 17070번
- 백준 2870번
- 수학숙제
- dfs
- c++
- 코테
- 2870번 c++
- 백준 c++ 2468번
- 코딩테스트
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.2 최솟값 만들기 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12941
1. 정답코드 및 핵심 아이디어, 유의사항
배열 A의 최댓값과 배열 B의 최솟값을 곱한 수를 다 더하면 문제의 최소 값을 구할 수 있음
주석 참조
using System;
public class Solution
{
public int solution(int[] A, int[] B)
{
int answer = 0;
Array.Sort(A);
Array.Reverse(A); // 내림차순
Array.Sort(B); // 오름차순
for (int i = 0; i < A.Length; i++)
answer += A[i] * B[i]; // A 최댓값 * B 최솟값
return answer;
}
}
'CodingTest > Programmers Lv.2' 카테고리의 다른 글
[프로그래머스 C#] Lv.2 게임 맵 최단거리 (1) | 2023.12.08 |
---|---|
[프로그래머스 C#] Lv.2 N-Queen (1) | 2023.12.07 |
[프로그래머스 C#] Lv.2 피보나치 수 (0) | 2023.12.07 |
[프로그래머스 C#] Lv.2 점프와 순간 이동 (1) | 2023.12.07 |
[프로그래머스 C#] Lv.2 H-Index (1) | 2023.12.06 |