結果

問題 No.1913 Periodic Comparison
ユーザー 37zigen37zigen
提出日時 2022-02-05 01:05:04
言語 Java21
(openjdk 21)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,856 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 83,936 KB
実行使用メモリ 94,552 KB
最終ジャッジ日時 2024-06-11 13:45:37
合計ジャッジ時間 49,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
44,468 KB
testcase_01 AC 203 ms
43,244 KB
testcase_02 AC 305 ms
46,884 KB
testcase_03 AC 248 ms
44,068 KB
testcase_04 AC 245 ms
44,336 KB
testcase_05 AC 241 ms
44,384 KB
testcase_06 AC 235 ms
44,288 KB
testcase_07 AC 238 ms
43,988 KB
testcase_08 AC 703 ms
49,484 KB
testcase_09 AC 1,928 ms
91,628 KB
testcase_10 AC 593 ms
49,504 KB
testcase_11 AC 1,514 ms
91,376 KB
testcase_12 AC 1,368 ms
87,252 KB
testcase_13 AC 508 ms
49,052 KB
testcase_14 AC 1,432 ms
90,920 KB
testcase_15 AC 1,517 ms
91,156 KB
testcase_16 AC 1,424 ms
93,236 KB
testcase_17 AC 635 ms
49,608 KB
testcase_18 AC 533 ms
48,436 KB
testcase_19 AC 1,548 ms
94,552 KB
testcase_20 AC 1,401 ms
93,556 KB
testcase_21 AC 1,584 ms
93,772 KB
testcase_22 RE -
testcase_23 AC 399 ms
47,412 KB
testcase_24 AC 1,507 ms
92,692 KB
testcase_25 AC 1,382 ms
93,360 KB
testcase_26 AC 1,430 ms
91,260 KB
testcase_27 AC 532 ms
48,740 KB
testcase_28 AC 634 ms
49,832 KB
testcase_29 AC 1,559 ms
93,768 KB
testcase_30 RE -
testcase_31 AC 395 ms
47,148 KB
testcase_32 AC 463 ms
48,488 KB
testcase_33 AC 525 ms
48,592 KB
testcase_34 AC 1,638 ms
94,156 KB
testcase_35 AC 1,668 ms
92,932 KB
testcase_36 AC 1,383 ms
90,320 KB
testcase_37 AC 1,667 ms
93,668 KB
testcase_38 AC 226 ms
44,404 KB
testcase_39 AC 197 ms
42,560 KB
testcase_40 AC 1,381 ms
91,960 KB
testcase_41 AC 1,576 ms
94,408 KB
testcase_42 AC 1,578 ms
93,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Scanner;

class Main {
	
	public static void main(String[] args) {
		new Main().run();
	}
	
	void solve() {
		Scanner sc=new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
		
		HashMap<Integer, int[]> points=new HashMap<>();
		int N=sc.nextInt();
		if (!(1 <= N && N <= 2e5)) throw new AssertionError();
		int[] X=new int[N];
		int[] Y=new int[N];
		for (int i=0;i<N;++i) {
			X[i]=sc.nextInt();
			if (!(0 <= X[i] && X[i] <= 1e7)) throw new AssertionError();
		}
		for (int i=0;i<N;++i) {
			Y[i]=sc.nextInt();
			if (!(0 <= Y[i] && Y[i] <= 1e7)) throw new AssertionError();
		}
		for (int i=0;i<N;++i) {
			if (points.containsKey(Y[i])) {
				System.out.println(-1);
				return;
			}
			points.put(Y[i], new int[] {X[i], i});
		}
		class State {
			int col;
			int height;
			
			public State(int col, int height) {
				this.col=col;
				this.height=height;
			}
		}
		
		int[] ans=new int[N];
		ArrayDeque<State> que=new ArrayDeque<>();
		for (int i=0;i<N;++i) que.addLast(new State(-1, -1));
		int time = (int)1e7;
		while (time >= 0) {
			State state = que.pollFirst();
			if (points.containsKey(time)) {
				if (state.col != -1) {
					System.out.println(-1);
					return;
				}
				int[] xi=points.get(time);
				state.col = xi[1];
				state.height = xi[0];
			} else {
				if (state.col != -1) state.height--;
			}
			if (state.height == 0) {
				ans[state.col] = time;
			} else {
				que.addLast(state);
			}
			--time;
		}
		if (!que.isEmpty()) {
			System.out.println(-1);
			return;
		}
		for (int i=0;i<N;++i) {
			pw.print(ans[i]+(i==N-1?"\n":" "));
		}
		pw.close();
	}
	
	void run() {
		solve();
	}
	
	static void tr(Object...objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0