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
- 카카오
- 백준
- 유니온파인드
- 삼성 #코테 #2020상반기 #c++
- 투포인터
- BFS
- 카카오인턴
- Union-find
- c++
- 코딩테스트
- Smilegate
- 알고리즘
- LIS #Algorithm #요소추적
- 스마일게이트
- 1편
- Algorithm
- 식단
- 코테
- 소감
- 보석쇼핑
- 중반부
- 서버개발캠프
- BaekJoon
- IBK기업은행 #기업은행 #디지털 #직무 #정리
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 463. Island Perimeter(Array) 본문
반응형
1로 칠해진 부분을 일일히 방문하여 겹쳐진 부분이 있는 가장자리를 제외해준다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class Solution {
public:
int islandPerimeter(vector<vector<int>>& grid) {
int row = grid.size();
int col = grid[0].size();
int count = 0;
for(int i=0; i<row; i++){
for(int j=0; j<col; j++){
if(grid[i][j]==1){
count += 4;
if(i-1>=0 && grid[i-1][j]==1) count--;
if(j-1>=0 && grid[i][j-1]==1) count--;
if(i+1<row && grid[i+1][j]==1) count--;
if(j+1<col && grid[i][j+1]==1) count--;
}
}
}
return count;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 45. Jump Game II (0) | 2021.10.17 |
---|---|
LeetCode : 496. Next Greater Element I (0) | 2021.07.20 |
LeetCode : 131. Palindrome Partitioning (Backtracking + String) (0) | 2021.02.16 |
LeetCode : 132. Palindrome Partitioning II (BFS+String) (0) | 2021.02.16 |
LeetCode : 72. Edit Distance (0) | 2021.02.05 |
Comments