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 | 29 | 30 |
Tags
- 구현
- java
- Tree
- Math
- geometry
- Matrix
- string
- SQL
- hash table
- sorting
- implement
- greedy
- simulation
- Binary Tree
- Stack
- dynamic programming
- Counting
- Data Structure
- Number Theory
- 파이썬
- database
- Binary Search
- bit manipulation
- Class
- Method
- 코딩테스트
- 코테
- 자바
- two pointers
- array
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1351. Count Negative Numbers in a Sorted Matrix 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1351. Count Negative Numbers in a Sorted Matrix
무지맘 2022. 12. 24. 02:121. Input
1) m행 n열 행렬 grid
2. Output
1) grid 내의 음수의 개수
3. Constraint
1) m == grid.length
2) n == grid[i].length
3) 1 <= m, n <= 100
4) -100 <= grid[i][j] <= 100
5) grid[i]의 요소들은 내림차순으로 정렬되어 있다.
4. Example
Input: grid = [[4,3,2,-1],[3,2,1,-1],[1,1,-1,-2],[-1,-1,-2,-3]] -> Output: 8
5. Code
1) 첫 코드(2022/06/16)
int count = 0;
for(int i=0 ; i<grid.length ; i++){
for(int j=grid[i].length-1 ; j>=0 ; j--){
if(grid[i][j]<0) count++;
else break;
} // for j
} // for i
return count;
2) 다시 풀어본 코드(2022/12/24)
int answer = 0;
for(int i=0 ; i<grid.length ; i++){
for(int j=0 ; j<grid[0].length ; j++){
if(grid[i][j]<0){
answer += (grid[0].length-j); break;
}
} // for j
} // for i
return answer;
- 1번보다 성능이 훨씬 좋아졌다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1385. Find the Distance Value Between Two Arrays (0) | 2022.12.24 |
---|---|
[LeetCode/Easy] 1365. How Many Numbers Are Smaller Than the Current Number (0) | 2022.12.24 |
[LeetCode/Easy] 1346. Check If N and Its Double Exist (0) | 2022.12.24 |
[LeetCode/Easy] 1342. Number of Steps to Reduce a Number to Zero (0) | 2022.12.24 |
[LeetCode/Easy] 1323. Maximum 69 Number (0) | 2022.12.24 |