티스토리 뷰

728x90

문제

https://www.acmicpc.net/problem/2798

 

2798번: 블랙잭

첫째 줄에 카드의 개수 N(3 ≤ N ≤ 100)과 M(10 ≤ M ≤ 300,000)이 주어진다. 둘째 줄에는 카드에 쓰여 있는 수가 주어지며, 이 값은 100,000을 넘지 않는 양의 정수이다. 합이 M을 넘지 않는 카드 3장

www.acmicpc.net

 

풀이 및 소스코드

 

브론즈라고 얕잡아 보면 안된다..

import java.io.*;
import java.util.*;


class Main {
	static int n, m;
	static int[] card;
	static int res;
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st;
		
		st = new StringTokenizer(br.readLine());
		n = Integer.parseInt(st.nextToken());
		m = Integer.parseInt(st.nextToken());
		
		card = new int[n];
		
		st = new StringTokenizer(br.readLine());
		for(int i=0;i<n;i++) {
			card[i] = Integer.parseInt(st.nextToken());
		}
		
		res = 0; // 걍 초기화
		for(int i=0;i<n-2;i++) {
			if(card[i]>m) continue;
			for(int j=i+1;j<n-1;j++) {
				if(card[i]+card[j]>m) continue;
				for(int k=j+1;k<n;k++) {
					if(card[i]+card[j]+card[k]>m) continue;
					int tmp = card[i]+card[j]+card[k];
					if(Math.abs(tmp-m)<Math.abs(res-m)) {
						res = tmp;
					}
				}
			}
		}
		System.out.println(res);
	}
}
반응형