티스토리 뷰
728x90
문제
https://www.acmicpc.net/problem/4485
풀이 및 소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.StringTokenizer;
class Main {
static int n;
static int[][] arr;
static int[][] dist;
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
StringBuilder sb = new StringBuilder();
int t = 1;
while(true) {
n = Integer.parseInt(br.readLine());
if(n==0) break;
arr = new int[n][n];
dist = new int[n][n];
for(int i=0;i<n;i++) {
st = new StringTokenizer(br.readLine());
for(int j=0;j<n;j++) {
arr[i][j] = Integer.parseInt(st.nextToken());
dist[i][j] = Integer.MAX_VALUE;
}
}
daji();
sb.append("Problem ").append(t).append(": ").append(dist[n-1][n-1]).append("\n");
t ++ ;
}
System.out.println(sb);
}
public static void daji() {
PriorityQueue<Node> q = new PriorityQueue<>();
q.add(new Node(0, 0, arr[0][0]));
dist[0][0] = arr[0][0];
int[] dx = {-1, 1, 0, 0};
int[] dy = {0, 0, -1, 1};
while(!q.isEmpty()) {
Node now = q.poll();
int x = now.x;
int y= now.y;
for(int i=0;i<4;i++) {
int nowx = x+dx[i];
int nowy = y+dy[i];
if(0>nowx||0>nowy||n<=nowx||n<=nowy) continue;
if(dist[x][y]+arr[nowx][nowy]<dist[nowx][nowy]) {
dist[nowx][nowy] = dist[x][y]+arr[nowx][nowy];
q.add(new Node(nowx, nowy, dist[nowx][nowy]));
}
}
}
}
}
class Node implements Comparable<Node>{
int x, y, time;
public Node(int x, int y, int time) {
super();
this.x = x;
this.y = y;
this.time = time;
}
@Override
public int compareTo(Node o) {
// TODO Auto-generated method stub
return this.time-o.time;
}
}
반응형
'Coding - Algo > Java' 카테고리의 다른 글
[백준] 16202번:MST 게임 (Java 자바) (0) | 2021.09.08 |
---|---|
[백준] 1922번:네트워크 연결 (Java 자바) (0) | 2021.09.08 |
[백준] 13549번:숨바꼭질 (Java 자바) (0) | 2021.09.06 |
[백준] 8320번:직사각형을 만드는 방법 (Java 자바) (0) | 2021.08.30 |
[백준] 2851번:슈퍼 마리오 (Java 자바) (0) | 2021.08.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- swea 타일링 자바
- 백준 17144
- 메뉴리뉴얼 풀이
- union-find
- 백준파이썬
- 타일링 자바
- 3996 자바
- 프로그래머스 자바
- yoloV3
- 백준
- 삼성청년SW아카데미
- SSAFY
- ubuntu
- 프로그래머스
- SWEA
- 파이썬 풀이
- swea 타일링
- 프로그래머스 파이썬
- swea 4070 타일링
- 1240 자바
- 백준 풀이
- poker swea
- 백준 dp 문제
- 프로그래머스 더 맵게
- swea 1240 자바
- 우분투
- 1699 자바
- swea 1240
- 파이썬
- 더 맵게
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함