結果

問題 No.390 最長の数列
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-03 11:55:27
言語 Go
(1.22.1)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 1,905 bytes
コンパイル時間 10,904 ms
コンパイル使用メモリ 224,720 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-03 22:00:48
合計ジャッジ時間 12,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
9,472 KB
testcase_01 AC 12 ms
9,472 KB
testcase_02 AC 12 ms
9,472 KB
testcase_03 AC 13 ms
9,472 KB
testcase_04 AC 12 ms
9,472 KB
testcase_05 AC 19 ms
5,376 KB
testcase_06 AC 62 ms
11,008 KB
testcase_07 AC 10 ms
9,472 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 10 ms
9,472 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 80 ms
10,880 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 11 ms
9,472 KB
testcase_18 AC 12 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"sort"
	"strconv"
)

func getScanner(fp *os.File) *bufio.Scanner {
	scanner := bufio.NewScanner(fp)
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
	return scanner
}
func getNextString(scanner *bufio.Scanner) string {
	scanner.Scan()
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextUint64(scanner *bufio.Scanner) uint64 {
	i, _ := strconv.ParseUint(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	cnt := 0
	if os.Getenv("MASPY") == "ますピ" {
		fp, _ = os.Open(os.Getenv("BEET_THE_HARMONY_OF_PERFECT"))
		cnt = 3
	}
	if os.Getenv("MASPYPY") == "ますピッピ" {
		wfp, _ = os.Create(os.Getenv("NGTKANA_IS_GENIUS10"))
	}
	scanner := getScanner(fp)
	writer := bufio.NewWriter(wfp)
	solve(scanner, writer)
	for i := 0; i < cnt; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
	writer.Flush()
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	xx := make([]int, n)
	for i := 0; i < n; i++ {
		xx[i] = getNextInt(scanner)
	}
	sort.Ints(xx)
	lim := 1000000
	dp := make([]cint, lim+1)
	for i := 0; i < n; i++ {
		dp[xx[i]].max(1)
		for j := xx[i] * 2; j < lim+1; j += xx[i] {
			dp[j].max(dp[xx[i]] + 1)
		}
	}
	var ans cint
	for i := 0; i < n; i++ {
		ans.max(dp[xx[i]])
	}
	fmt.Fprintln(writer, ans)
}

type cint int

func (x *cint) min(y cint) *cint {
	if *x > y {
		*x = y
	}
	return x
}
func (x *cint) max(y cint) *cint {
	if *x < y {
		*x = y
	}
	return x
}
0