일곱난쟁이의 키는 합쳐서 100이다.
100M인가? ㅋㅋ
근데 9명이 되버린것.
그래서 2명의 키를 빼준값이 100이되면 된다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.util.*; | |
/** | |
* BOJ 2309 일곱 난쟁이 | |
* https://gist.github.com/KSH-code/c9403c654ad14fcf814b9bbc34887685 | |
*/ | |
public class Main{ | |
public static void main(String[] args) throws IOException{ | |
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); | |
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); | |
int N = 9; | |
LinkedList<Integer> linkedList = new LinkedList<>(); | |
int d[] = new int[9]; | |
int all = 0; | |
for(int i = 0; i<N; i++){ | |
all += d[i] = Integer.parseInt(br.readLine()); | |
} | |
int sum = 0; | |
for(int i = 0; i<9; i++){ | |
for(int j = 0; j<9; j++){ | |
if(i==j) continue; | |
if(all-d[i]-d[j] == 100){ | |
d[j]=d[i]=Integer.MAX_VALUE; | |
} | |
} | |
} | |
Arrays.sort(d); | |
for(int i = 0; i<7; i++){ | |
bw.write(d[i] + "\n"); | |
} | |
bw.flush(); | |
} | |
} |
'IT > 알고리즘' 카테고리의 다른 글
BOJ 11657 타임머신 풀이 벨만 포드 (0) | 2017.10.19 |
---|---|
BOJ 14852 타일채우기 3 풀이 (0) | 2017.10.18 |
BOJ 2065 줄 세우기 (0) | 2017.10.18 |
BOJ 11404 플로이드 Floyd-Warshall (0) | 2017.10.18 |
BOJ 1717 집합의 표현 disjoint-set (0) | 2017.10.17 |