結果
問題 |
No.1111 コード進行
|
ユーザー |
![]() |
提出日時 | 2020-07-10 22:34:00 |
言語 | Go (1.23.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,431 bytes |
コンパイル時間 | 17,221 ms |
コンパイル使用メモリ | 235,732 KB |
実行使用メモリ | 27,136 KB |
最終ジャッジ日時 | 2024-10-11 13:18:12 |
合計ジャッジ時間 | 22,201 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 28 TLE * 1 -- * 19 |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" ) const ( m = 1000000007 ) func main() { defer flush() N := readInt() M := readInt() K := readInt() pqc := make([][][2]int, 301) for i := 0; i < M; i++ { P := readInt() Q := readInt() C := readInt() pqc[P] = append(pqc[P], [2]int{Q, C}) } t := make([]map[int]int, 301) for i := 1; i < 301; i++ { t[i] = map[int]int{0: 1} } for i := 0; i < N-1; i++ { nt := make([]map[int]int, 301) for j := 1; j < 301; j++ { for k := range t[j] { for _, qc := range pqc[j] { q := qc[0] c := qc[1] v := (k + c) % m if nt[q] == nil { nt[q] = map[int]int{} } nt[q][v] += t[j][k] } } } t = nt } result := 0 for i := 1; i < 301; i++ { result += t[i][K] result %= m } println(result) } const ( ioBufferSize = 1 * 1024 * 1024 // 1 MB ) var stdinScanner = func() *bufio.Scanner { result := bufio.NewScanner(os.Stdin) result.Buffer(make([]byte, ioBufferSize), ioBufferSize) result.Split(bufio.ScanWords) return result }() func readString() string { stdinScanner.Scan() return stdinScanner.Text() } func readInt() int { result, err := strconv.Atoi(readString()) if err != nil { panic(err) } return result } var stdoutWriter = bufio.NewWriter(os.Stdout) func flush() { stdoutWriter.Flush() } func println(args ...interface{}) (int, error) { return fmt.Fprintln(stdoutWriter, args...) }