티스토리 뷰
728x90
문제
https://www.acmicpc.net/problem/14499
풀이 및 소스코드
구현 및 시뮬레이션 문제!
주사위의 자리 값들이 들어갈 클래스를 만들어주었다.
뭔가 주사위의 아랫부분이 중점인 것 같아서 now로 명명해주었고, now를 기준으로 이름을 지어주었다.
1. 동
2. 서
3. 북
4. 남
이렇게 회전된다.
회전 후, 이동한 칸의 값이 0이면 now의 값을 칸에 복사,
0이 아니면 칸의 값을 now에 복사 후 칸의 값을 0으로 만들어주면 된다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
StringBuilder sb = new StringBuilder();
st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
int x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
int[][] map = new int[n][m];
for(int i=0;i<n;i++) {
st = new StringTokenizer(br.readLine());
for(int j=0;j<m;j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
int[] dx = {0, 0, 0, -1, 1};
int[] dy = {0, 1, -1, 0, 0};
// 동 서 북 남
jusawe ju = new jusawe(0, 0, 0, 0, 0, 0);
// 처음은 0으로 셋팅
st = new StringTokenizer(br.readLine());
for(int o=0;o<k;o++) {
int order = Integer.parseInt(st.nextToken());
// 일단 굴리기
x = x+dx[order];
y = y+dy[order];
if(x<0||y<0||x>=n||y>=m) {
// 범위를 벗어나게 되면
x -= dx[order];
y -= dy[order];
continue;
// 다음 조건으로 넘어간다.
}
if(order == 1) {
// 동쪽으로 굴리기
int tmp = ju.left;
ju.left = ju.now;
ju.now = ju.right;
ju.right = ju.nowtop;
ju.nowtop = tmp;
}else if(order == 2) {
// 서쪽으로 굴리기
int tmp = ju.left;
ju.left = ju.nowtop;
ju.nowtop = ju.right;
ju.right = ju.now;
ju.now = tmp;
}else if(order == 3) {
// 북쪽으로 굴리기
int tmp = ju.now;
ju.now=ju.top;
ju.top = ju.nowtop;
ju.nowtop = ju.bottom;
ju.bottom = tmp;
}else if(order == 4) {
// 남쪽으로 굴리기
int tmp = ju.now;
ju.now = ju.bottom;
ju.bottom = ju.nowtop;
ju.nowtop = ju.top;
ju.top = tmp;
}
// 주사위를 굴렸을 때, 이동하는 칸에 쓰여있는 수가 0이면 주사위의 바닥면에 쓰여있는 수가 복사된다.
if (map[x][y]==0) {
map[x][y] = ju.now;
}else {
// 아닐 경우에는 반대로
ju.now = map[x][y];
map[x][y] = 0;
}
sb.append(ju.nowtop).append("\n");
}
System.out.println(sb);
}
}
class jusawe {
int now, left, right, top, bottom, nowtop;
public jusawe(int now, int left, int right, int top, int bottom, int nowtop) {
super();
this.now = now;
this.left = left;
this.right = right;
this.top = top;
this.bottom = bottom;
this.nowtop = nowtop;
}
@Override
public String toString() {
return "jusawe [now=" + now + ", left=" + left + ", right=" + right + ", top=" + top + ", bottom=" + bottom
+ ", nowtop=" + nowtop + "]";
}
}
반응형
'Coding - Algo > Java' 카테고리의 다른 글
[백준] 15651번:N과 M(3) (Java 자바) (0) | 2021.11.08 |
---|---|
[백준] 7569번:토마토 (Java 자바) (0) | 2021.11.08 |
[백준] 13335번:트럭 (Java 자바) (0) | 2021.11.01 |
[백준] 4963번:섬의 개수 (Java 자바) (0) | 2021.11.01 |
[백준] 14889번:스타트와 링크 (Java 자바) (0) | 2021.10.26 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 3996 자바
- swea 타일링
- swea 4070 타일링
- swea 1240 자바
- yoloV3
- 더 맵게
- ubuntu
- 1240 자바
- 프로그래머스 파이썬
- 백준파이썬
- 백준 dp 문제
- 프로그래머스 더 맵게
- 백준
- 파이썬
- 메뉴리뉴얼 풀이
- 파이썬 풀이
- 프로그래머스
- union-find
- 삼성청년SW아카데미
- swea 1240
- poker swea
- 타일링 자바
- 백준 17144
- SSAFY
- 프로그래머스 자바
- SWEA
- 백준 풀이
- swea 타일링 자바
- 우분투
- 1699 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함