結果

問題 No.466 ジオラマ
ユーザー maspymaspy
提出日時 2020-03-22 06:54:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,430 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-06 22:15:07
合計ジャッジ時間 7,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 49 ms
12,672 KB
testcase_07 AC 42 ms
11,904 KB
testcase_08 AC 57 ms
13,568 KB
testcase_09 AC 47 ms
12,416 KB
testcase_10 AC 49 ms
12,672 KB
testcase_11 AC 46 ms
12,416 KB
testcase_12 AC 54 ms
12,928 KB
testcase_13 AC 43 ms
11,904 KB
testcase_14 AC 41 ms
11,648 KB
testcase_15 AC 45 ms
12,032 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 41 ms
11,776 KB
testcase_18 AC 43 ms
12,032 KB
testcase_19 AC 44 ms
12,032 KB
testcase_20 AC 44 ms
12,032 KB
testcase_21 AC 44 ms
11,904 KB
testcase_22 AC 50 ms
12,800 KB
testcase_23 AC 44 ms
12,032 KB
testcase_24 AC 52 ms
12,928 KB
testcase_25 AC 54 ms
13,184 KB
testcase_26 AC 46 ms
12,032 KB
testcase_27 AC 56 ms
13,312 KB
testcase_28 AC 49 ms
12,672 KB
testcase_29 AC 55 ms
13,184 KB
testcase_30 AC 49 ms
12,416 KB
testcase_31 AC 47 ms
12,288 KB
testcase_32 AC 47 ms
12,288 KB
testcase_33 AC 44 ms
12,032 KB
testcase_34 AC 50 ms
12,544 KB
testcase_35 AC 47 ms
12,288 KB
testcase_36 AC 39 ms
11,392 KB
testcase_37 AC 34 ms
11,392 KB
testcase_38 AC 42 ms
11,648 KB
testcase_39 AC 35 ms
11,776 KB
testcase_40 AC 45 ms
12,160 KB
testcase_41 AC 36 ms
12,288 KB
testcase_42 AC 44 ms
12,032 KB
testcase_43 AC 35 ms
11,904 KB
testcase_44 AC 43 ms
12,032 KB
testcase_45 AC 35 ms
12,032 KB
testcase_46 AC 37 ms
11,136 KB
testcase_47 AC 33 ms
11,264 KB
testcase_48 AC 49 ms
12,544 KB
testcase_49 AC 37 ms
12,416 KB
testcase_50 AC 46 ms
12,288 KB
testcase_51 AC 37 ms
12,288 KB
testcase_52 AC 48 ms
12,160 KB
testcase_53 AC 36 ms
12,032 KB
testcase_54 AC 45 ms
12,032 KB
testcase_55 AC 36 ms
11,904 KB
testcase_56 AC 35 ms
11,136 KB
testcase_57 AC 33 ms
11,136 KB
testcase_58 AC 33 ms
11,008 KB
testcase_59 AC 32 ms
11,008 KB
testcase_60 AC 38 ms
11,520 KB
testcase_61 AC 34 ms
11,392 KB
testcase_62 AC 35 ms
11,008 KB
testcase_63 AC 33 ms
11,136 KB
testcase_64 AC 35 ms
11,008 KB
testcase_65 AC 33 ms
11,136 KB
testcase_66 AC 50 ms
12,672 KB
testcase_67 AC 37 ms
12,800 KB
testcase_68 AC 44 ms
12,032 KB
testcase_69 AC 36 ms
12,032 KB
testcase_70 AC 41 ms
11,520 KB
testcase_71 AC 35 ms
11,776 KB
testcase_72 AC 39 ms
11,520 KB
testcase_73 AC 33 ms
11,392 KB
testcase_74 AC 46 ms
12,160 KB
testcase_75 AC 38 ms
12,288 KB
testcase_76 AC 39 ms
12,544 KB
testcase_77 AC 35 ms
11,776 KB
testcase_78 AC 37 ms
12,544 KB
testcase_79 AC 36 ms
12,416 KB
testcase_80 AC 36 ms
12,160 KB
testcase_81 RE -
testcase_82 AC 31 ms
10,624 KB
testcase_83 AC 32 ms
10,880 KB
testcase_84 AC 53 ms
12,928 KB
testcase_85 AC 68 ms
14,464 KB
testcase_86 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

A, B, C, D = map(int, read().split())


def output(edges):
    A, B = zip(*edges)
    N = 1 + max(A + B)
    M = len(edges)
    if M > D:
        print(-1)
    else:
        print(N, M)
        for a, b in zip(A, B):
            print(a, b)


def solve(A, B, C):
    if A == B == C:
        if A == 1:
            print(-1)
            exit()
        return [(n, (n + 1) % A) for n in range(A)]
    edges = []
    if A == C < B:
        edges += [(1, 0)]
        for n in range(2, C + 1):
            edges.append((0, n))
        for n in range(C + 1, B):
            edges.append((1, n))
        return edges
    if B == C < A:
        edges += [(0, 1)]
        for n in range(2, C + 1):
            edges.append((1, n))
        for n in range(C + 1, A):
            edges.append((0, n))
        return edges
    if C == 0:
        for n in range(2, A + 1):
            edges.append((0, n))
        for n in range(A + 1, A + B):
            edges.append((1, n))
        return edges
    edges.append((0, 2))
    edges.append((1, 2))
    for n in range(2, C + 1):
        edges.append((n, n + 1))
    for n in range(C + 2, A + 1):
        edges.append((0, n))
    for n in range(A + 1, A + 1 + B - C - 1):
        edges.append((1, n))
    return edges


edges = solve(A, B, C)
output(edges)
0