結果

問題 No.1017 Reiwa Sequence
ユーザー uwiuwi
提出日時 2020-04-03 22:02:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 4,755 bytes
コンパイル時間 3,902 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 409,596 KB
最終ジャッジ日時 2023-09-16 01:44:51
合計ジャッジ時間 31,400 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
78,580 KB
testcase_01 AC 97 ms
60,684 KB
testcase_02 AC 66 ms
50,876 KB
testcase_03 AC 253 ms
117,924 KB
testcase_04 AC 69 ms
50,804 KB
testcase_05 AC 184 ms
67,064 KB
testcase_06 AC 142 ms
63,144 KB
testcase_07 AC 66 ms
48,788 KB
testcase_08 AC 66 ms
50,640 KB
testcase_09 AC 270 ms
146,580 KB
testcase_10 WA -
testcase_11 AC 267 ms
140,720 KB
testcase_12 AC 429 ms
395,404 KB
testcase_13 WA -
testcase_14 AC 241 ms
140,076 KB
testcase_15 AC 253 ms
146,232 KB
testcase_16 AC 239 ms
137,924 KB
testcase_17 AC 340 ms
203,752 KB
testcase_18 AC 253 ms
140,196 KB
testcase_19 AC 511 ms
326,868 KB
testcase_20 AC 530 ms
326,876 KB
testcase_21 AC 539 ms
326,864 KB
testcase_22 AC 535 ms
326,800 KB
testcase_23 AC 519 ms
326,856 KB
testcase_24 AC 479 ms
326,964 KB
testcase_25 AC 511 ms
326,908 KB
testcase_26 AC 490 ms
327,052 KB
testcase_27 AC 535 ms
327,676 KB
testcase_28 AC 537 ms
327,948 KB
testcase_29 AC 443 ms
327,996 KB
testcase_30 WA -
testcase_31 AC 499 ms
327,884 KB
testcase_32 AC 520 ms
327,672 KB
testcase_33 AC 432 ms
327,900 KB
testcase_34 AC 66 ms
51,016 KB
testcase_35 AC 71 ms
50,684 KB
testcase_36 AC 66 ms
50,612 KB
testcase_37 RE -
testcase_38 AC 363 ms
327,896 KB
testcase_39 WA -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 517 ms
64,996 KB
testcase_49 RE -
testcase_50 AC 298 ms
64,784 KB
testcase_51 AC 74 ms
54,140 KB
testcase_52 AC 497 ms
327,628 KB
testcase_53 AC 475 ms
327,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest200403;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Comparator;
import java.util.InputMismatchException;

public class C {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		int n = ni();
		int[] a = na(n);
		int[][] ai = new int[n][];
		for(int i = 0;i < n;i++){
			ai[i] = new int[]{a[i], i};
		}
		Arrays.sort(ai, new Comparator<int[]>() {
			public int compare(int[] a, int[] b) {
				return a[0] - b[0];
			}
		});
		
		for(int i = 0;i < n-1;i++){
			if(ai[i+1][0] == ai[i][0]){
				out.println("Yes");
				int[] b = new int[n];
				b[ai[i][1]] = ai[i][0];
				b[ai[i+1][1]] = -ai[i][0];
				print(b); return;
			}
		}
		
		int[] hit = new int[150005];
		Arrays.fill(hit, -1);
		for(int i = 0;i < n-1;i++){
			int cha = ai[i+1][0] - ai[i][0];
			if(hit[cha] != -1 && hit[cha] < i-1){
				out.println("Yes");
				int[] b = new int[n];
				b[ai[i+1][1]] = ai[i+1][0];
				b[ai[i][1]] = -ai[i][0];
				b[ai[hit[cha]+1][1]] = ai[hit[cha]+1][0];
				b[ai[hit[cha]][1]] = ai[hit[cha]][0];
				print(b); return;
			}
		}
		
		// sqrt(n)
		int h = (n+1)/2;
		int[][] dp = new int[n+1][150005*h*2+1];
		int O = 150005*h;
		dp[0][O] = 1;
		for(int i = 0;i < n;i++){
			for(int j = 0;j < dp[i].length;j++){
				dp[i+1][j] = dp[i][j];
			}
			for(int j = 0;j < dp[i].length;j++){
				if(dp[i][j] != 0){
					if(j+a[i] < dp[i].length)dp[i+1][j+a[i]] += dp[i][j]*3;
					if(j-a[i] >= 0)dp[i+1][j-a[i]] += dp[i][j]*5;
				}
			}
			if(dp[i+1][O] != 1){
				out.println("Yes");
				int cur = O;
				int[] b = new int[n];
				for(int k = i;k >= 0;k--){
					if(dp[k][cur] != (cur == O ? 1 : 0)){
					}else if(cur-a[k] >= 0 && dp[k][cur-a[k]] != 0){
						cur -= a[k];
						b[k] = a[k];
					}else{
						cur += a[k];
						b[k] = -a[k];
					}
				}
				print(b); return;
			}
		}
		out.println("No");
	}
	
	void print(int[] b)
	{
		for(int v : b){
			out.print(v + " ");
		}
		out.println();
	}
	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//		Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){
//			@Override
//			public void run() {
//				long s = System.currentTimeMillis();
//				solve();
//				out.flush();
//				if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//			}
//		};
//		t.start();
//		t.join();
	}
	
	public static void main(String[] args) throws Exception { new C().run(); }
	
	private byte[] inbuf = new byte[1024];
	public int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private long[] nal(int n)
	{
		long[] a = new long[n];
		for(int i = 0;i < n;i++)a[i] = nl();
		return a;
	}
	
	private char[][] nm(int n, int m) {
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[][] nmi(int n, int m) {
		int[][] map = new int[n][];
		for(int i = 0;i < n;i++)map[i] = na(m);
		return map;
	}
	
	private int ni() { return (int)nl(); }
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0