結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | ngtkana |
提出日時 | 2020-01-30 20:31:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,527 bytes |
コンパイル時間 | 947 ms |
コンパイル使用メモリ | 107,008 KB |
実行使用メモリ | 48,384 KB |
最終ジャッジ日時 | 2024-09-16 03:51:00 |
合計ジャッジ時間 | 2,858 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
20,864 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 47 ms
20,992 KB |
testcase_04 | AC | 47 ms
20,992 KB |
testcase_05 | WA | - |
testcase_06 | AC | 54 ms
20,992 KB |
testcase_07 | WA | - |
testcase_08 | AC | 47 ms
21,120 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 130 ms
41,984 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; public static class Program{ static int ALim=300001; public static void Main() { List<int>primes=new List<int>(); { bool[]sieve=new bool[ALim]; int p=2; for(;p*p<ALim;p++)if(!sieve[p]){ primes.Add(p); for(int x=p*p;x<ALim;x+=p){ sieve[x]=true; } } for(;p<ALim;p++)if(!sieve[p]){ primes.Add(p); } } int n=int.Parse(Console.ReadLine()); int[]a=Console.ReadLine().Split().Select(int.Parse).ToArray(); int[]dp=new int[ALim]; int[]exc=new int[ALim]; for(int i=0;i<ALim;i++){ dp[i]=n; } for(int i=0;i<n;i++){ Chmin(ref dp[i],i); } int ans=0; bool ckd=true; while(ckd){ ans++; ckd=false; for(int i=0;i<ALim;i++)exc[i]=n; foreach(int p in primes){ for(int i=1;i*p<ALim;i++){ Chmin(ref dp[i*p],dp[i]); Chmin(ref exc[i*p], dp[i]); } } for(int i=0;i<ALim;i++)dp[i]=n; for(int i=0;i<n;i++)if(exc[a[i]]<i){ Chmin(ref dp[a[i]],i); ckd=true; } } Console.WriteLine(ans); } public static void Chmin(ref int x, int y){ x=Math.Min(x,y); } }