結果

問題 No.1015 おつりは要らないです
ユーザー narushimanarushima
提出日時 2020-04-03 22:22:10
言語 Java19
(openjdk 21)
結果
WA  
実行時間 -
コード長 4,701 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 88,472 KB
実行使用メモリ 61,236 KB
最終ジャッジ日時 2023-09-16 02:36:52
合計ジャッジ時間 12,330 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,880 KB
testcase_01 AC 54 ms
50,384 KB
testcase_02 AC 55 ms
50,108 KB
testcase_03 AC 55 ms
50,716 KB
testcase_04 AC 56 ms
50,180 KB
testcase_05 AC 55 ms
50,268 KB
testcase_06 AC 56 ms
50,592 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 319 ms
58,336 KB
testcase_11 AC 325 ms
58,084 KB
testcase_12 AC 320 ms
57,856 KB
testcase_13 AC 311 ms
58,348 KB
testcase_14 AC 328 ms
59,744 KB
testcase_15 AC 302 ms
58,332 KB
testcase_16 AC 325 ms
58,436 KB
testcase_17 AC 335 ms
57,932 KB
testcase_18 AC 327 ms
58,308 KB
testcase_19 AC 321 ms
58,424 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 55 ms
50,392 KB
testcase_31 AC 234 ms
57,376 KB
testcase_32 AC 207 ms
57,272 KB
testcase_33 AC 255 ms
58,876 KB
testcase_34 AC 55 ms
50,448 KB
testcase_35 AC 54 ms
50,348 KB
testcase_36 AC 55 ms
50,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	static final int mod = (int) 1e9 + 7;
	static final int DX[] = { -1, 0, 1, 0 }, DY[] = { 0, -1, 0, 1 };
	static final int[] DX8 = { -1, -1, -1, 0, 0, 1, 1, 1 }, DY8 = { -1, 0, 1, -1, 1, -1, 0, 1 };
	static final int INF = Integer.MAX_VALUE / 3;
	static final long LINF = Long.MAX_VALUE / 3;
	static final String nextLine = "\n";

	public static void main(String[] args) {
		FastScanner fs = new FastScanner(System.in);
		int n = fs.nextInt();
		int x[] = fs.nextIntArray(3);
		int a[] = fs.nextIntArray(n);
		PriorityQueue<Integer> pq1 = new PriorityQueue<>((p1,p2)->p2-p1);//1000円から4999円まで
		PriorityQueue<Integer> pq2 = new PriorityQueue<>((p1,p2)->p2-p1);//5000円から9999円まで
		rsort(a);
		for(int i=0;i<n;i++) {
			//1万年以上ならなるべく1万を使う
			if(a[i]>=10000) {
				int t = a[i] / 10000;//tは払わないギリギリ。42000円ならt=4
				if(t <= x[2]) {//42000円に対して、1万*4枚で払えるなら
					x[2] -= t;
					int rem = a[i] % 10000;
					if(rem < 5000)pq1.add(rem);
					else pq2.add(rem);
				}
				else {
					a[i] -= 10000*x[2]; //使えるだけ1万円を使い切る
					x[2] = 0;
					if(a[i] < 5000) {
						pq1.add(a[i]);
						continue;
					}
					//4999円以下になるまで5000円で払う
					int s = a[i] / 5000;
					if(s <= x[1]) {
						x[1] -= s;
						int rem = a[i] % 5000;
						pq1.add(rem);
					}
					else {//5000円で払いきれない場合
						a[i] -= 5000 * x[1];
						x[1] = 0;
						int u = a[i]/1000 + 1; //残りは千円で払い切る。2000円なら3枚
						if(x[0] >= u) {
							x[0] -= u;
						}
						else {
							System.out.println("No");
							return;
						}
					}
				}
			}
			else {
				if(a[i] < 5000)pq1.add(a[i]);
				else pq2.add(a[i]);
			}
		}
		
		for(int t : pq2) {
			if(x[2]>0)x[2]--;//ここまできたらもう1万円は使っていい
			else {
				if(x[1]>0) {
					t -= x[1]*5000;
					pq1.add(t);
					x[1]--;
				}
				else {//1万も五千もない
					int tmp = t/1000+1;
					if(x[0]>=tmp)x[0] -= tmp;
					else {
						System.out.println("No");
						return;
					}
				}
			}
		}
		for(int t:pq1) {
			if(x[2]>0)x[2]--;
			else if(x[1]>0)x[1]--;
			else {
				int tmp = t/1000+1;
				if(x[0]>=tmp)x[0] -= tmp;
				else {
					System.out.println("No");
					return;
				}
			}
		}
		
		System.out.println("Yes");
	}
	
	//reverseOrderSort : O(NlogN)
	static void rsort(int[] ar) {
		Arrays.sort(ar);
		int len = ar.length;
		for (int i = 0; i < len / 2; i++) {
			int tmp = ar[i];
			ar[i] = ar[len - 1 - i];
			ar[len - 1 - i] = tmp;
		}
	}

	static void rsort(long[] ar) {
		Arrays.sort(ar);
		int len = ar.length;
		for (int i = 0; i < len / 2; i++) {
			long tmp = ar[i];
			ar[i] = ar[len - 1 - i];
			ar[len - 1 - i] = tmp;
		}
	}

	//MOD culculations
	static long plus(long x, long y) {
		long res = (x + y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long sub(long x, long y) {
		long res = (x - y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long mul(long x, long y) {
		long res = (x * y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long div(long x, long y) {
		long res = x * pow(y, mod - 2) % mod;
		return res < 0 ? res + mod : res;
	}

	static long pow(long x, long y) {
		if (y < 0)
			return 0;
		if (y == 0)
			return 1;
		if (y % 2 == 1)
			return (x * pow(x, y - 1)) % mod;
		long root = pow(x, y / 2);
		return root * root % mod;
	}
}

//高速なScanner
class FastScanner {
	private BufferedReader reader = null;
	private StringTokenizer tokenizer = null;

	public FastScanner(InputStream in) {
		reader = new BufferedReader(new InputStreamReader(in));
		tokenizer = null;
	}

	public String next() {
		if (tokenizer == null || !tokenizer.hasMoreTokens()) {
			try {
				tokenizer = new StringTokenizer(reader.readLine());
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}
		return tokenizer.nextToken();
	}

	public String nextLine() {
		if (tokenizer == null || !tokenizer.hasMoreTokens()) {
			try {
				return reader.readLine();
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}
		return tokenizer.nextToken("\n");
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}

	public int[] nextIntArray(int n) {
		int[] a = new int[n];
		for (int i = 0; i < n; i++)
			a[i] = nextInt();
		return a;
	}

	public long[] nextLongArray(int n) {
		long[] a = new long[n];
		for (int i = 0; i < n; i++)
			a[i] = nextLong();
		return a;
	}
}
0