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++
- 백준 1103번 게임
- 백준 c++ 2468번
- 플레이어 이동
- 유니티
- 백준 17070번 c++
- 17070번
- dfs
- Lv2
- 2870번 수학숙제 c++
- 백준 1103번
- 코딩테스트
- Algorithm
- Unity
- 2468 c++
- 2870번 c++
- 프로그래머스
- 코테
- 백준 2870번
- 백준
- Beakjoon
- 2870번 수학숙제
- Lv.3
- 백준 1103번 c++
- 백준 c++ 2870번
- 2870번
- 백준 17070번
- C#
- 수학숙제
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.2 행렬의 곱셈 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12939
1. 정답코드 및 핵심 아이디어, 유의사항
뇌절이 오기 쉬운 문제이므로 주의! ( 어떤 게 기준이 되는지 잘 생각해야 함 )
- arr1.GetLength(1) == arr2.GetLength(0) (arr1 x축 == arr2 y축)
- 행렬곱 결과의 크기 : [arr1 y축, arr2 x축]
+ 만약, 뇌절이 오는 것 같다면 극단적인 예시로 뭐가 기준이 되는지 생각해보면 도움이 됨
-> ( 연산 시에 0으로 초기화되는 축이 어디인지, 등 )
using System;
public class Solution
{
// arr1.GetLength(1) == arr2.GetLength(0) (arr1 x축 == arr2 y축)
public int[,] solution(int[,] arr1, int[,] arr2)
{
// 행렬곱 결과의 크기 : [arr1 y축, arr2 x축]
int[,] answer = new int[arr1.GetLength(0), arr2.GetLength(1)];
for (int y = 0; y < answer.GetLength(0); y++)
for (int x = 0; x < answer.GetLength(1); x++)
for (int i = 0; i < arr1.GetLength(1); i++)
answer[y, x] += arr1[y, i] * arr2[i, x];
return answer;
}
}
'CodingTest > Programmers Lv.2' 카테고리의 다른 글
[프로그래머스 C#] Lv.2 H-Index (1) | 2023.12.06 |
---|---|
[프로그래머스 C#] Lv.2 점 찍기 (1) | 2023.12.06 |
[프로그래머스 C#] Lv.2 최댓값과 최솟값 (1) | 2023.12.05 |
[프로그래머스 C#] Lv.2 다음 큰 숫자 (1) | 2023.12.05 |
[프로그래머스 C#] Lv.2 JadenCase 문자열 만들기 (1) | 2023.12.05 |