結果

問題 No.762 PDCAパス
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-02 22:50:31
言語 Go
(1.22.1)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 3,286 bytes
コンパイル時間 14,763 ms
コンパイル使用メモリ 238,488 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-05-03 14:44:43
合計ジャッジ時間 16,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 32 ms
9,216 KB
testcase_23 AC 31 ms
9,216 KB
testcase_24 AC 59 ms
11,520 KB
testcase_25 AC 59 ms
11,520 KB
testcase_26 AC 34 ms
9,984 KB
testcase_27 AC 34 ms
9,984 KB
testcase_28 AC 96 ms
13,952 KB
testcase_29 AC 93 ms
14,080 KB
testcase_30 AC 85 ms
12,800 KB
testcase_31 AC 84 ms
12,928 KB
testcase_32 AC 87 ms
12,928 KB
testcase_33 AC 79 ms
12,032 KB
testcase_34 AC 80 ms
12,032 KB
testcase_35 AC 80 ms
12,032 KB
testcase_36 AC 49 ms
11,136 KB
testcase_37 AC 52 ms
11,008 KB
testcase_38 AC 48 ms
11,136 KB
testcase_39 AC 48 ms
11,136 KB
testcase_40 AC 49 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"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 = 2
	}
	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)
	m := getNextInt(scanner)
	s := getNextString(scanner)
	g := newGraph(n)

	for i := 0; i < n; i++ {
		g.v[i] = new(vertex)
		g.v[i].ch = s[i]
		if s[i] == 'P' {
			g.v[i].into = 1
		}
	}
	for i := 0; i < m; i++ {
		u := getNextInt(scanner) - 1
		v := getNextInt(scanner) - 1
		g.appendEdge(u, v, i)
		g.appendEdge(v, u, i)
	}
	moves := [3][2]byte{
		[2]byte{'P', 'D'},
		[2]byte{'D', 'C'},
		[2]byte{'C', 'A'},
	}
	for c := 0; c < 3; c++ {
		for i := 0; i < n; i++ {
			if g.v[i].ch == moves[c][0] {
				for _, e := range g.e[i] {
					if g.v[e.to].ch == moves[c][1] {
						g.v[e.to].into.addAs(g.v[i].into)
					}
				}
			}
		}
	}
	var ans mint
	for i := 0; i < n; i++ {
		if g.v[i].ch == 'A' {
			ans.addAs(g.v[i].into)
		}
	}
	fmt.Fprintln(writer, ans)

}

type graph struct {
	v []*vertex
	e [][]*edge
}

func newGraph(n int) *graph {
	return &graph{
		v: make([]*vertex, n),
		e: make([][]*edge, n),
	}
}
func (g *graph) appendEdge(from, to, id int) {
	g.e[from] = append(g.e[from], &edge{
		to: to,
		id: id,
	})
}

type vertex struct {
	ch   byte
	into mint
}
type edge struct {
	to, id int
}

type mint int

func (mt mint) mod() mint {
	m := mint(1e9 + 7)
	mt %= m
	if mt < 0 {
		return mt + m
	}
	return mt
}
func (mt mint) inv() mint {
	var m, y mint
	m.subAs(2)
	dbl := mt
	y = 1
	for i := 0; i < 31; i++ {
		if m%2 == 1 {
			y.mulAs(dbl)
		}
		m >>= 1
		dbl.mulAs(dbl)
	}
	return y
}
func (mt mint) add(x mint) mint {
	return (mt + x).mod()
}
func (mt mint) sub(x mint) mint {
	return (mt - x).mod()
}
func (mt mint) mul(x mint) mint {
	return (mt * x).mod()
}
func (mt mint) div(x mint) mint {
	return mt.mul(x.inv())
}
func (mt *mint) addAs(x mint) *mint {
	*mt = mt.add(x)
	return mt
}
func (mt *mint) subAs(x mint) *mint {
	*mt = mt.sub(x)
	return mt
}
func (mt *mint) mulAs(x mint) *mint {
	*mt = mt.mul(x)
	return mt
}
func (mt *mint) divAs(x mint) *mint {
	*mt = mt.div(x)
	return mt
}
0