結果
問題 | No.92 逃走経路 |
ユーザー | neko_the_shadow |
提出日時 | 2020-03-06 09:30:33 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,899 bytes |
コンパイル時間 | 11,181 ms |
コンパイル使用メモリ | 224,272 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 02:39:43 |
合計ジャッジ時間 | 12,186 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" "strings" ) func exec(stdin *Stdin, stdout *Stdout) { n := stdin.ReadInt() m := stdin.ReadInt() k := stdin.ReadInt() a := make([]int, m) b := make([]int, m) c := make([]int, m) for i := 0; i < m; i++ { a[i] = stdin.ReadInt() - 1 b[i] = stdin.ReadInt() - 1 c[i] = stdin.ReadInt() } d := make([]int, k) for i := 0; i < k; i++ { d[i] = stdin.ReadInt() } dp := make([][]bool, k+1) for i := 0; i < n; i++ { dp[i] = make([]bool, n) } for i := 0; i < n; i++ { dp[0][i] = true } for i := 0; i < k; i++ { for j := 0; j < n; j++ { if !dp[i][j] { continue } for x := 0; x < m; x++ { if c[x] != d[i] { continue } if b[x] == j { dp[i+1][a[x]] = true } if a[x] == j { dp[i+1][b[x]] = true } } } } first := 0 second := []string{} for i := 0; i < n; i++ { if !dp[k][i] { continue } first++ second = append(second, strconv.Itoa(i+1)) } stdout.Println(first) stdout.Println(strings.Join(second, " ")) } func main() { stdout := NewStdout() defer stdout.Flush() exec(NewStdin(bufio.ScanWords), stdout) } type Stdin struct { stdin *bufio.Scanner } func NewStdin(split bufio.SplitFunc) *Stdin { s := Stdin{bufio.NewScanner(os.Stdin)} s.stdin.Split(split) s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), int(math.MaxInt32)) return &s } func (s *Stdin) Read() string { s.stdin.Scan() return s.stdin.Text() } func (s *Stdin) ReadInt() int { n, _ := strconv.Atoi(s.Read()) return n } func (s *Stdin) ReadFloat64() float64 { n, _ := strconv.ParseFloat(s.Read(), 64) return n } type Stdout struct { stdout *bufio.Writer } func NewStdout() *Stdout { return &Stdout{bufio.NewWriter(os.Stdout)} } func (s *Stdout) Flush() { s.stdout.Flush() } func (s *Stdout) Println(a ...interface{}) { fmt.Fprintln(s.stdout, a...) }