結果

問題 No.1913 Periodic Comparison
ユーザー 37zigen37zigen
提出日時 2022-02-10 04:41:33
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,904 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 87,200 KB
実行使用メモリ 95,092 KB
最終ジャッジ日時 2024-06-25 09:55:45
合計ジャッジ時間 63,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
44,632 KB
testcase_01 AC 234 ms
43,680 KB
testcase_02 AC 334 ms
46,928 KB
testcase_03 AC 269 ms
44,728 KB
testcase_04 AC 268 ms
44,396 KB
testcase_05 AC 286 ms
44,716 KB
testcase_06 AC 287 ms
44,704 KB
testcase_07 AC 270 ms
44,740 KB
testcase_08 AC 807 ms
50,776 KB
testcase_09 TLE -
testcase_10 AC 728 ms
49,808 KB
testcase_11 AC 1,984 ms
94,608 KB
testcase_12 AC 1,770 ms
86,376 KB
testcase_13 AC 614 ms
49,908 KB
testcase_14 AC 1,987 ms
94,440 KB
testcase_15 TLE -
testcase_16 AC 1,824 ms
93,368 KB
testcase_17 AC 742 ms
50,480 KB
testcase_18 AC 628 ms
49,972 KB
testcase_19 AC 1,941 ms
91,224 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 558 ms
48,372 KB
testcase_23 AC 472 ms
47,652 KB
testcase_24 AC 1,995 ms
94,768 KB
testcase_25 AC 1,887 ms
94,008 KB
testcase_26 AC 1,881 ms
93,920 KB
testcase_27 AC 691 ms
50,188 KB
testcase_28 AC 687 ms
50,100 KB
testcase_29 TLE -
testcase_30 AC 1,823 ms
93,228 KB
testcase_31 AC 472 ms
47,644 KB
testcase_32 AC 543 ms
48,896 KB
testcase_33 AC 639 ms
49,416 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,769 ms
93,320 KB
testcase_37 TLE -
testcase_38 AC 263 ms
44,304 KB
testcase_39 AC 240 ms
43,296 KB
testcase_40 AC 1,771 ms
92,304 KB
testcase_41 TLE -
testcase_42 AC 1,909 ms
94,608 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] <= 1e6)) throw new AssertionError();
		}
		for (int i=0;i<N;++i) {
			Y[i]=sc.nextInt();
			if (!(0 <= Y[i] && Y[i] <= 1e6)) 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 && !que.isEmpty()){
			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() || (time > 0 && 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