반응형
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 | 31 |
Tags
- BFS
- 연결요소
- msSQL
- incr
- BOJ
- dfs
- boj #19237 #어른 상어
- OFFSET
- 경력
- 오퍼레터
- Docker
- compose
- 기술면접
- 백준
- 백트래킹
- 성적평가
- 처우협의
- 소프티어
- 매개변수탐색
- 물채우기
- 이분탐색
- @P0
- softeer
- 퇴사통보
- 13908
- 6987
- 처우산정
- Kafka
- 파라메트릭
- upper_bound
Archives
- Today
- Total
기술 블로그
17267번 상남자 본문
728x90
반응형
https://www.acmicpc.net/problem/17267
예전에 한참 고민하고, 고민했던 C++로 풀었던 문제이다.
그 당시에는 queue로 풀려고 하였으나, 계속 틀려서 결국 질문을 통하여 해결하였다.
최대한 자유롭게 움직여서 이동할 수 있는 최대 칸 수를 구하는 문제이므로,
최대가 되기 위해서는 상, 하로 우선 먼저 최대한 많이 움직여야 한다.
따라서, deque를 사용하여 상, 하일 때는 rear이 아닌 front쪽에 push를 해주면 된다.
물론 좌, 우일 때는 rear쪽에 push를 해준다.
또한, 내가 못 풀고 있었을 때의 코드에 대한 반례도 올려본다.
아마 deque로 말고, queue로 구현하였다면, 첫 번째 반례에서 20이 뜰 것이다.
2 왼쪽에 있는 0으로 바로 가기 때문에 L이 0이 되버리기 때문이다.
즉, (2, 3)에 있는 0으로 못 간다.(행과 열은 0부터 시작)
https://www.acmicpc.net/board/view/37868
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 8 5 1 4 00000 01110 02100 10110 10110 10110 10000 11111 21 6 6 1 5 110001 120100 001110 011100 011110 000000 21 | cs |
하여튼 결국 C++로 구현하였지만,
자바(Java)로도 풀고 싶어서 다시 풀어보았다.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | import java.io.*; import java.util.*; public class Main { static int n, m, L, R, sy, sx; static int[][] map; static int[] dy = {0, 1, 0, -1}; static int[] dx = {1, 0, -1, 0}; static boolean[][] visit; static int bfs() { Deque<info> dq = new LinkedList<info>(); dq.push(new info(sy, sx, L, R)); // 또는 pushFirst(맨 앞 push) visit[sy][sx] = true; while(!dq.isEmpty()) { int dqs = dq.size(); while(dqs > 0) { int r = dq.peekFirst().y; int c = dq.peekFirst().x; int Left = dq.peekFirst().Left; int Right = dq.peekFirst().Right; //System.out.println("(" + r + ", " + c + "), L = " + Left + ", R = " + Right); dq.pop(); for(int i=0; i<4; i++) { int y = r + dy[i]; int x = c + dx[i]; if(y < 0 || y >= n || x < 0 || x >= m || map[y][x] == 1 || visit[y][x]) { continue; } if(i == 1 || i == 3) { // 상, 하 visit[y][x] = true; dq.addFirst(new info(y, x, Left, Right)); } else if(i == 0) { // 우 if(Right >= 1) { visit[y][x] = true; dq.addLast(new info(y, x, Left, Right - 1)); } } else if(i == 2) { // 좌 if(Left >= 1) { visit[y][x] = true; dq.addLast(new info(y, x, Left - 1, Right)); } } } dqs--; } } int ret = 0; for(int i=0; i<n; i++) { for(int j=0; j<m; j++) { if(visit[i][j]) { ++ret; } } } return ret; } public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); StringTokenizer st = new StringTokenizer(br.readLine()); n = Integer.parseInt(st.nextToken()); m = Integer.parseInt(st.nextToken()); map = new int[n+1][m+1]; visit = new boolean[n+1][m+1]; st = new StringTokenizer(br.readLine()); L = Integer.parseInt(st.nextToken()); R = Integer.parseInt(st.nextToken()); for(int i=0; i<n; i++) { String s = br.readLine(); for(int j=0; j<s.length(); j++) { map[i][j] = s.charAt(j) - '0'; if(s.charAt(j) == '2') { sy = i; sx = j; } } } System.out.println(bfs()); } } class info { int y, x, Left, Right; info(int y, int x, int Left, int Right) { this.y = y; this.x = x; this.Left = Left; this.Right = Right; } } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
10217번 KCM Travel (0) | 2020.01.05 |
---|---|
2352번 반도체 설계 (0) | 2020.01.04 |
1058번 친구 (0) | 2020.01.03 |
1449번 수리공 항승 (0) | 2020.01.02 |
18244번 변형 계단 수 (0) | 2020.01.01 |