結果

問題 No.30 たこやき工場
ユーザー 14番14番
提出日時 2016-04-03 08:34:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 3,848 bytes
コンパイル時間 2,910 ms
コンパイル使用メモリ 108,780 KB
実行使用メモリ 25,180 KB
最終ジャッジ日時 2023-08-23 05:17:36
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
21,260 KB
testcase_01 AC 68 ms
21,260 KB
testcase_02 AC 67 ms
21,236 KB
testcase_03 AC 68 ms
23,188 KB
testcase_04 AC 68 ms
21,124 KB
testcase_05 AC 68 ms
23,304 KB
testcase_06 AC 68 ms
25,180 KB
testcase_07 AC 67 ms
21,156 KB
testcase_08 AC 69 ms
21,240 KB
testcase_09 AC 69 ms
23,200 KB
testcase_10 AC 71 ms
21,236 KB
testcase_11 AC 69 ms
21,236 KB
testcase_12 AC 68 ms
23,240 KB
testcase_13 AC 68 ms
23,212 KB
testcase_14 AC 70 ms
21,272 KB
testcase_15 AC 70 ms
23,276 KB
testcase_16 AC 70 ms
23,276 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Text;

class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int lastSeihin = int.Parse(Reader.ReadLine());
        int seizouhouCount = int.Parse(Reader.ReadLine());

        
        for (int i = 1; i <= lastSeihin; i++)
        {
            Seihin tmp = new Seihin();
            tmp.SeihinId = i;
            this.SeihinList.Add(tmp);
        }
        for (int i = 0; i < seizouhouCount; i++)
        {
            int[] inpt = Reader.GetInt();
            int makeFor = inpt[2];
            int cnt = inpt[1];
            int zaiyo = inpt[0];

            Seizouhou hou = new Seizouhou();
            hou.Zairyou = SeihinList[zaiyo - 1];
            hou.Count = cnt;
            SeihinList[makeFor - 1].ZairyouList.Add(hou);
        }
        Dictionary<Seihin, long> ansDic = SeihinList[SeihinList.Count - 1].GetMustBuy();
        for (int i = 0; i < SeihinList.Count - 1; i++)
        {
            Seihin key = SeihinList[i];
            if (ansDic.ContainsKey(key))
            {
                Console.WriteLine(ansDic[key].ToString("###############################0"));
            }
            else
            {
                Console.WriteLine("0");
            }
        }

    }

    private List<Seihin> SeihinList = new List<Seihin>();

    public class Seihin
    {
        public int SeihinId;
        public List<Seizouhou> ZairyouList = new List<Seizouhou>();
        public Dictionary<Seihin, long> MustBuyList = null;
        public Dictionary<Seihin, long> GetMustBuy()
        {
            if (MustBuyList != null)
            {
                return MustBuyList;
            }
            Dictionary<Seihin, long> ans = new Dictionary<Seihin, long>();
            if (this.ZairyouList.Count > 0)
            {
                foreach (Seizouhou seihou in this.ZairyouList)
                {
                    Dictionary<Seihin, long> ret = seihou.Zairyou.GetMustBuy();
                    foreach (Seihin key in ret.Keys)
                    {
                        if (ans.ContainsKey(key))
                        {
                            ans[key] += (ret[key] * seihou.Count);
                        }
                        else
                        {
                            ans.Add(key, ret[key] * seihou.Count);
                        }
                    }
                }
            }
            else
            {
                ans.Add(this, 1);
            }
            this.MustBuyList = ans;
            return ans;
        }
    }

    public class Seizouhou
    {
        public Seihin Zairyou;
        public long Count;
    }


    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"
 

2
1
1 5 2


 
";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        public static int[] GetInt(char delimiter = ' ', bool trim = false)
        {
            string inptStr = ReadLine();
            if (trim)
            {
                inptStr = inptStr.Trim();
            }
            string[] inpt = inptStr.Split(delimiter);
            int[] ret = new int[inpt.Length];
            for (int i = 0; i < inpt.Length; i++)
            {
                ret[i] = int.Parse(inpt[i]);
            }
            return ret;
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0