結果

問題 No.466 ジオラマ
ユーザー hiro116shiro116s
提出日時 2017-02-09 01:43:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 5,412 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 89,604 KB
実行使用メモリ 41,176 KB
最終ジャッジ日時 2024-06-07 13:17:43
合計ジャッジ時間 17,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
37,968 KB
testcase_01 AC 48 ms
36,804 KB
testcase_02 AC 71 ms
38,060 KB
testcase_03 AC 77 ms
38,016 KB
testcase_04 AC 83 ms
38,564 KB
testcase_05 AC 46 ms
37,044 KB
testcase_06 AC 135 ms
39,892 KB
testcase_07 AC 128 ms
39,384 KB
testcase_08 AC 146 ms
40,004 KB
testcase_09 AC 133 ms
39,320 KB
testcase_10 AC 139 ms
41,056 KB
testcase_11 AC 138 ms
39,556 KB
testcase_12 AC 133 ms
39,816 KB
testcase_13 AC 139 ms
40,620 KB
testcase_14 AC 125 ms
39,432 KB
testcase_15 AC 145 ms
39,836 KB
testcase_16 AC 75 ms
38,124 KB
testcase_17 AC 125 ms
39,384 KB
testcase_18 AC 128 ms
39,688 KB
testcase_19 AC 131 ms
39,892 KB
testcase_20 AC 132 ms
39,744 KB
testcase_21 AC 123 ms
39,208 KB
testcase_22 AC 135 ms
39,912 KB
testcase_23 AC 142 ms
39,640 KB
testcase_24 AC 145 ms
40,056 KB
testcase_25 AC 150 ms
41,076 KB
testcase_26 AC 132 ms
39,480 KB
testcase_27 AC 150 ms
41,176 KB
testcase_28 AC 138 ms
39,548 KB
testcase_29 AC 129 ms
39,796 KB
testcase_30 AC 119 ms
39,620 KB
testcase_31 AC 134 ms
39,368 KB
testcase_32 AC 126 ms
39,612 KB
testcase_33 AC 130 ms
39,384 KB
testcase_34 AC 136 ms
39,676 KB
testcase_35 AC 131 ms
39,664 KB
testcase_36 AC 135 ms
39,580 KB
testcase_37 AC 47 ms
36,840 KB
testcase_38 AC 122 ms
39,296 KB
testcase_39 AC 47 ms
36,876 KB
testcase_40 AC 141 ms
39,432 KB
testcase_41 AC 47 ms
36,940 KB
testcase_42 AC 134 ms
39,624 KB
testcase_43 AC 47 ms
36,808 KB
testcase_44 AC 125 ms
39,596 KB
testcase_45 AC 46 ms
36,424 KB
testcase_46 AC 123 ms
39,560 KB
testcase_47 AC 47 ms
36,716 KB
testcase_48 AC 133 ms
39,644 KB
testcase_49 AC 45 ms
36,820 KB
testcase_50 AC 142 ms
39,772 KB
testcase_51 AC 48 ms
36,732 KB
testcase_52 AC 121 ms
39,524 KB
testcase_53 AC 45 ms
36,980 KB
testcase_54 AC 126 ms
39,388 KB
testcase_55 AC 46 ms
36,956 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 AC 134 ms
39,464 KB
testcase_67 AC 47 ms
36,444 KB
testcase_68 AC 146 ms
39,716 KB
testcase_69 AC 48 ms
36,872 KB
testcase_70 AC 127 ms
39,496 KB
testcase_71 AC 47 ms
36,716 KB
testcase_72 AC 124 ms
39,004 KB
testcase_73 AC 48 ms
37,044 KB
testcase_74 AC 139 ms
39,816 KB
testcase_75 AC 46 ms
36,516 KB
testcase_76 AC 46 ms
36,808 KB
testcase_77 AC 48 ms
36,552 KB
testcase_78 AC 47 ms
36,736 KB
testcase_79 AC 48 ms
36,936 KB
testcase_80 AC 45 ms
36,680 KB
testcase_81 AC 46 ms
36,804 KB
testcase_82 AC 46 ms
36,864 KB
testcase_83 AC 67 ms
37,976 KB
testcase_84 WA -
testcase_85 AC 144 ms
39,892 KB
testcase_86 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.util.PriorityQueue;

public class Main {
	InputStream is;

	int __t__ = 1;
	int __f__ = 0;
	
	int __STACKSIZE_CHANGE_FLAG__ = __f__;
	int __FILE_DEBUG_FLAG__ = __f__;
	String __DEBUG_FILE_NAME__ = "src/X1";

	FastScanner in;
	PrintWriter out;
	
	public void solve() {
		int A = in.nextInt(), B = in.nextInt(), C = in.nextInt(), D = in.nextInt();
		int a = 0, b = 1;
		if (A > B) {
			int tmp = A; A = B; B = tmp;
			a = 1; b = 0;
		}
		
		if (B == 1) {
			if (C == 0) {
				System.out.println("2 0");				
			} else {
				System.out.println("-1");
			}
			return;
		}
		if (C == 0) {
			int N = A + B;
			int M = N - 2;
			if (M > D) {
				System.out.println(-1);
				return;
			}
			out.println(N + " " + M);
			int cur = 2;
			for (int i = 0; i < A - 1; i++) out.println(a + " " + cur++);
			for (int i = 0; i < B - 1; i++) out.println(b + " " + cur++);
			out.close();
		} else if (A > C) {
			int N = A + B - C;
			int M = N - 1;
			if (M > D) {
				System.out.println(-1);
				return;
			}
			out.println(N + " " + M);
			int cur = 2;
			for (int i = 0; i < A - C; i++) out.println(a + " " + cur++);
			cur--;
			for (int i = 0; i < B - C; i++) out.println(b + " " + cur++);
			for (int i = 0, st = A - C + 1; i < C - 1; i++) out.println(st + " " + cur++);
			
			out.close();
		} else if (A == C) {
			int N = B;
			int M = N - 1;
			if (M > D) {
				System.out.println(-1);
				return;
			}
			out.println(N + " " + M);
			for (int i = 0; i < A - 1; i++) out.println(a + " " + (i+2));
			out.println(b + " " + a);
			for (int i = 0; i < B - A - 1; i++) out.println(b + " " + (i+1+A));
		} else {
			throw new RuntimeException();
		}
		out.close();
	}
	
	public void run() {
		if (__FILE_DEBUG_FLAG__ == __t__) {
			try {
				is = new FileInputStream(__DEBUG_FILE_NAME__);
			} catch (FileNotFoundException e) {
				e.printStackTrace();
			}
			System.out.println("FILE_INPUT!");
		} else {
			is = System.in;
		}
		in = new FastScanner(is);
		out = new PrintWriter(System.out);
		if (__STACKSIZE_CHANGE_FLAG__ == __t__)
			new Thread(null, new Runnable() {
				@Override
				public void run() {
					solve();
				}
			}, "main", 1 << 30).start();
		else
			solve();
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(long[][] a) {
		System.out.println("--------map display---------");

		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}

		System.out.println("----------------------------");
		System.out.println();
	}

	public void debug(Object... obj) {
		System.out.println(Arrays.deepToString(obj));
	}

	class FastScanner {
		private InputStream stream;
		private byte[] buf = new byte[1024];
		private int curChar;
		private int numChars;

		public FastScanner(InputStream stream) {
			this.stream = stream;
			// stream = new FileInputStream(new File("dec.in"));

		}

		int read() {
			if (numChars == -1)
				throw new InputMismatchException();
			if (curChar >= numChars) {
				curChar = 0;
				try {
					numChars = stream.read(buf);
				} catch (IOException e) {
					throw new InputMismatchException();
				}
				if (numChars <= 0)
					return -1;
			}
			return buf[curChar++];
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

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

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();

			return array;
		}

		int[][] nextIntMap(int n, int m) {
			int[][] map = new int[n][m];
			for (int i = 0; i < n; i++) {
				map[i] = in.nextIntArray(m);
			}
			return map;
		}

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

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();

			return array;
		}

		long[][] nextLongMap(int n, int m) {
			long[][] map = new long[n][m];
			for (int i = 0; i < n; i++) {
				map[i] = in.nextLongArray(m);
			}
			return map;
		}

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

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();

			return array;
		}

		double[][] nextDoubleMap(int n, int m) {
			double[][] map = new double[n][m];
			for (int i = 0; i < n; i++) {
				map[i] = in.nextDoubleArray(m);
			}
			return map;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0