結果

問題 No.466 ジオラマ
ユーザー 14番14番
提出日時 2016-12-16 02:07:27
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,937 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 115,424 KB
実行使用メモリ 34,484 KB
最終ジャッジ日時 2024-05-07 15:49:46
合計ジャッジ時間 8,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,420 KB
testcase_01 AC 27 ms
25,276 KB
testcase_02 AC 28 ms
25,292 KB
testcase_03 AC 28 ms
25,420 KB
testcase_04 AC 27 ms
27,068 KB
testcase_05 AC 27 ms
25,152 KB
testcase_06 AC 35 ms
32,624 KB
testcase_07 AC 33 ms
27,180 KB
testcase_08 AC 39 ms
33,532 KB
testcase_09 AC 33 ms
27,240 KB
testcase_10 AC 36 ms
30,608 KB
testcase_11 AC 33 ms
29,680 KB
testcase_12 AC 37 ms
28,984 KB
testcase_13 AC 30 ms
27,556 KB
testcase_14 AC 31 ms
29,240 KB
testcase_15 AC 32 ms
27,392 KB
testcase_16 AC 28 ms
27,452 KB
testcase_17 AC 31 ms
27,368 KB
testcase_18 AC 32 ms
27,456 KB
testcase_19 AC 31 ms
27,600 KB
testcase_20 AC 32 ms
27,328 KB
testcase_21 AC 32 ms
27,272 KB
testcase_22 AC 35 ms
32,920 KB
testcase_23 AC 30 ms
29,444 KB
testcase_24 AC 36 ms
30,980 KB
testcase_25 AC 35 ms
33,288 KB
testcase_26 AC 31 ms
27,632 KB
testcase_27 AC 37 ms
33,376 KB
testcase_28 AC 35 ms
32,640 KB
testcase_29 AC 36 ms
29,228 KB
testcase_30 AC 33 ms
27,796 KB
testcase_31 AC 33 ms
29,488 KB
testcase_32 AC 32 ms
29,616 KB
testcase_33 AC 30 ms
27,528 KB
testcase_34 AC 35 ms
30,276 KB
testcase_35 AC 32 ms
27,428 KB
testcase_36 AC 31 ms
25,508 KB
testcase_37 AC 28 ms
25,164 KB
testcase_38 AC 33 ms
27,180 KB
testcase_39 AC 28 ms
25,268 KB
testcase_40 AC 34 ms
29,476 KB
testcase_41 AC 29 ms
27,444 KB
testcase_42 AC 32 ms
27,544 KB
testcase_43 AC 25 ms
25,156 KB
testcase_44 AC 32 ms
27,456 KB
testcase_45 AC 27 ms
25,268 KB
testcase_46 AC 29 ms
27,548 KB
testcase_47 AC 26 ms
25,276 KB
testcase_48 AC 35 ms
32,568 KB
testcase_49 AC 27 ms
23,088 KB
testcase_50 AC 32 ms
25,700 KB
testcase_51 AC 28 ms
25,388 KB
testcase_52 AC 33 ms
25,456 KB
testcase_53 AC 29 ms
25,396 KB
testcase_54 AC 32 ms
29,504 KB
testcase_55 AC 28 ms
23,352 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 36 ms
34,484 KB
testcase_67 AC 26 ms
27,196 KB
testcase_68 AC 31 ms
29,672 KB
testcase_69 AC 27 ms
27,316 KB
testcase_70 AC 32 ms
31,396 KB
testcase_71 AC 26 ms
25,292 KB
testcase_72 AC 30 ms
25,404 KB
testcase_73 AC 25 ms
27,192 KB
testcase_74 AC 31 ms
27,332 KB
testcase_75 AC 25 ms
25,528 KB
testcase_76 AC 26 ms
27,324 KB
testcase_77 AC 26 ms
24,904 KB
testcase_78 AC 27 ms
25,272 KB
testcase_79 AC 27 ms
27,436 KB
testcase_80 AC 26 ms
25,424 KB
testcase_81 AC 27 ms
25,168 KB
testcase_82 AC 27 ms
25,288 KB
testcase_83 WA -
testcase_84 WA -
testcase_85 AC 45 ms
32,632 KB
testcase_86 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{
    public void Proc() {
        Reader.IsDebug = false;
        int[] inpt = Reader.ReadLine().Split(' ').Select(c=>int.Parse(c)).ToArray();

        int a = inpt[0];
        int b = inpt[1];
        int aAndB = inpt[2];
        int roadCount = inpt[3];

        if(aAndB > 0 && a+b-aAndB-1>roadCount) {
            Console.WriteLine(-1);
            return;
        }
        if(aAndB == 0 && a+b-2>roadCount) {
            Console.WriteLine(-1);
            return;
        }
        if(aAndB > 0 && (a<=1 || b<=1)) {
            Console.WriteLine(-1);
            return;
        }

        TreeNode t0 = new TreeNode(0);
        TreeNode t1 = new TreeNode(1);

        if(aAndB == a) {
            t1.Add(t0);
            int idx = 2;
            if(a>1) {
                t0.AddRange(idx, idx+a-2);
            }
            idx = idx+a-1;
            if(b-aAndB>1) {
                t1.AddRange(idx, idx+(b-aAndB)-2);
            }
        } else if(aAndB == b) {
            t0.Add(t1);
            int idx = 2;
            if(b>1) {
                t1.AddRange(idx, idx+b-2);
            }
            idx = idx+b-1;
            if(a-aAndB>1) {
                t0.AddRange(idx, idx+(a-aAndB)-2);
            }
//       } else if(a == b && a == aAndB) {

        } else {
            TreeNode t2 = null;
            int idx = 2;
            if(aAndB > 0) {
                t2 = new TreeNode(2);
                idx++;
                if(aAndB >1) {
                    t2.AddRange(idx, idx+aAndB-2);
                    idx=idx+aAndB-1;
                }
                t0.Add(t2);
                t1.Add(t2);
            }
            if(a-aAndB>1) {
                t0.AddRange(idx, idx+(a-aAndB)-2);
                idx = idx+(a-aAndB)-1;
            }
            if(b-aAndB>1) {
                t1.AddRange(idx, idx+(b-aAndB)-2);
            }
        }

        StringBuilder ans = new StringBuilder();
        ans.Append(t0.Print());
        ans.Append(t1.Print());
        int mura = a+b-aAndB;
        int road = mura-1;
        if(aAndB == 0) {
            road--;
        }
        Console.WriteLine(mura + " " + road);
        Console.Write(ans.ToString());
    }

    public class TreeNode {
        public int Id;

        public List<TreeNode> Items = new List<TreeNode>();

        public TreeNode(int id) {
            this.Id = id;
        }
        public void Add(TreeNode cld) {
            this.Items.Add(cld);
        }

        private bool IsPrinted = false;
        public string Print() {
            if(this.IsPrinted) {
                return string.Empty;
            }
            this.IsPrinted = true;
            StringBuilder ret = new StringBuilder();
            this.Items.ForEach(a=>{
                    ret.AppendLine(this.Id + " " + a.Id);
                    ret.Append(a.Print());
                });
            return ret.ToString();
        }
        

        public List<TreeNode> AddRange(int f, int t) {
            List<TreeNode> tmp = new List<TreeNode>();
            for(int i=f; i<=t; i++) {
                tmp.Add(new TreeNode(i));
            }
            this.Items.AddRange(tmp);
            return tmp;
        }
    }

    public class Reader {
        public static bool IsDebug = true;
        private static System.IO.StringReader SReader;
        private static string InitText = @"


2 2 1 2




";
        public static string ReadLine() {
            if(IsDebug) {
                if(SReader == null) {
                    SReader = new System.IO.StringReader(InitText.Trim());
                }
                return SReader.ReadLine();
            } else {
                return Console.ReadLine();
            }
        }
    }
    public static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0