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
- 다이나믹프로그래밍
- 백준
- 세그먼트트리
- 백준코딩테스트
- java
- 시뮬레이션
- 네트워크플로우
- 구현
- 게더타운시작
- BFS
- 01BFS
- 이젠 골드구현도 어렵네..
- 완전탐색
- 다익스트라
- COSPRO
- 재귀함수
- 알고리즘
- 엘라스틱서치
- QUICKSTARTGUIDE
- 취득후기
- 우선순위큐
- GatherTown
- DFS
- COSPROJAVA1급
- dp
- spring
- 자바PS
- PS
- YBMCOS
- deque
Archives
- Today
- Total
공부공간
BOJ - 2075 ) N번째 큰 수 본문
https://www.acmicpc.net/problem/2075
N번째 큰수를 구하기위해서 N^2의 배열을 선언한다 메모리제한이 12mb이므로
1500*1500*4 = 9mb를 사용하고 index의 최댓값을 저장할 일차원배열을 선언한다.
N번 돌면서 일차원 배열의 최댓값을 구하고 그 인덱스를 하나 줄여준다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
StringBuilder sb = new StringBuilder();
int n = Integer.parseInt(st.nextToken());
int map[][] = new int[n][n];
int index[] = new int[n];
for(int i = 0 ; i < n; i++) {
st = new StringTokenizer(br.readLine());
for(int j= 0 ; j < n ; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if(i == n-1) {
index[j] = n-1;
}
}
}
int tc= n;
int max_row=0 , max_col =0;
while(tc-->0) {
int max = 0;
for(int i = 0 ; i < n ; i++) {
if( max < map[index[i]][i] ) {
max = map[index[i]][i];
max_row = index[i];
max_col = i;
}
}
index[max_col]--;
}System.out.println(map[max_row][max_col]);
}
}
'알고리즘 > Dynamic Programming' 카테고리의 다른 글
BOJ - 9251 ) LCS (0) | 2020.08.25 |
---|---|
BOJ - 2096 ) 내려가기 (0) | 2020.06.29 |
BOJ - 2096 ) 내려가기 (0) | 2020.02.12 |
BOJ - 11066 ) 파일 합치기 (0) | 2020.02.11 |
BOJ - 1965) 상자 넣기 (0) | 2020.02.06 |
Comments