반응형
https://leetcode.com/problems/count-good-triplets/description/
간단 전수조사 문제였습니다.
📕 풀이방법
📔 입력 및 초기화
정답변수 triples, arr의 길이 arrLength를 선언한 후 각각 0, arr.size()값을 저장해줍니다.
📔 풀이과정
arr에 대해 3중 for loop를 수행하며 조건에 맞으면 triples를 1씩 더해줍니다.
📔 정답 출력 | 반환
triples를 반환합니다.
📕 Code
📔 C++
class Solution {
public:
int countGoodTriplets(vector<int>& arr, int a, int b, int c) {
int triples = 0, arrLength = arr.size();
for(int i = 0; i < arrLength; i++) {
for(int j = 0; j < arrLength; j++) {
for(int k = 0; k < arrLength; k++) {
if (0 <= i && i < j && j < k && k < arrLength &&
abs(arr[i] - arr[j]) <= a &&
abs(arr[j] - arr[k]) <= b &&
abs(arr[i] - arr[k]) <= c
) {
triples++;
}
}
}
}
return triples;
}
};
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Brute Force' 카테고리의 다른 글
(C++) - LeetCode (easy) 1582. Special Positions in a Binary Matrix (0) | 2024.05.01 |
---|---|
(C++) - LeetCode (easy) 1566. Detect Pattern of Length M Repeated K or More Times (0) | 2024.04.27 |
(C++) - LeetCode (easy) 1464. Maximum Product of Two Elements in an Array (0) | 2024.03.28 |
(C++) - LeetCode (easy) 1436. Destination City (0) | 2024.03.19 |
(C++) - LeetCode (easy) 1399. Count Largest Group (1) | 2024.03.07 |