結果
問題 | No.390 最長の数列 |
ユーザー | 14番 |
提出日時 | 2016-07-19 02:17:09 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 2,687 ms / 5,000 ms |
コード長 | 2,828 bytes |
コンパイル時間 | 2,330 ms |
コンパイル使用メモリ | 120,188 KB |
実行使用メモリ | 110,708 KB |
最終ジャッジ日時 | 2024-10-02 11:00:19 |
合計ジャッジ時間 | 8,117 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
19,328 KB |
testcase_01 | AC | 36 ms
19,328 KB |
testcase_02 | AC | 37 ms
19,456 KB |
testcase_03 | AC | 36 ms
19,712 KB |
testcase_04 | AC | 36 ms
19,328 KB |
testcase_05 | AC | 167 ms
45,172 KB |
testcase_06 | AC | 2,687 ms
110,708 KB |
testcase_07 | AC | 34 ms
19,072 KB |
testcase_08 | AC | 34 ms
19,200 KB |
testcase_09 | AC | 35 ms
19,456 KB |
testcase_10 | AC | 288 ms
46,940 KB |
testcase_11 | AC | 281 ms
46,944 KB |
testcase_12 | AC | 278 ms
46,928 KB |
testcase_13 | AC | 188 ms
43,264 KB |
testcase_14 | AC | 706 ms
66,616 KB |
testcase_15 | AC | 34 ms
19,456 KB |
testcase_16 | AC | 36 ms
19,456 KB |
testcase_17 | AC | 45 ms
21,120 KB |
testcase_18 | AC | 51 ms
21,504 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int itemCount = int.Parse(Reader.ReadLine()); int[] items = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).OrderBy(a=>a).ToArray(); int max = items[items.Length - 1]; Dictionary<int, TreeNode> dic = new Dictionary<int, TreeNode>(); for(int i=0; i<items.Length; i++) { dic.Add(items[i], new TreeNode(i, items[i])); } for(int i=0; i<items.Length; i++) { int num = items[i]; TreeNode t = dic[num]; int tmp = max / num; if(dic.Count > tmp) { for(int j=2; j<=tmp; j++) { if(dic.ContainsKey(num*j)) { dic[num*j].Add(t); } } } else { for(int j=i+1; j<items.Length; j++) { if(items[j] % num == 0) { dic[items[j]].Add(t); } } } } int ans = 0; foreach (int key in dic.Keys) { ans = Math.Max(ans, dic[key].Length); } Console.WriteLine(ans); } public class TreeNode { public int Number; public int Index; public List<TreeNode> Items = new List<TreeNode>(); public TreeNode Add(TreeNode child) { this.Items.Add(child); return child; } public int Length { get { if(this.LenValue == null) { if(this.Items.Count == 0) { this.LenValue = 1; } else { this.LenValue = this.Items.Max(a=>a.Length) + 1; } } return this.LenValue.Value; } } private Nullable<int> LenValue = null; public TreeNode(int idx, int num) { this.Index = idx; this.Number = num; } } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 7 1 2 22 88 8 4 440 "; 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(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }