結果

問題 No.844 split game
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-02 17:25:37
言語 Go
(1.22.1)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 2,788 bytes
コンパイル時間 10,740 ms
コンパイル使用メモリ 222,040 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-05-03 06:42:49
合計ジャッジ時間 13,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
5,248 KB
testcase_01 AC 13 ms
5,248 KB
testcase_02 AC 40 ms
5,504 KB
testcase_03 AC 29 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 43 ms
6,016 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 31 ms
5,376 KB
testcase_10 AC 48 ms
6,016 KB
testcase_11 AC 43 ms
6,400 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 19 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 47 ms
6,656 KB
testcase_16 AC 46 ms
6,656 KB
testcase_17 AC 45 ms
6,656 KB
testcase_18 AC 51 ms
6,656 KB
testcase_19 AC 47 ms
6,656 KB
testcase_20 AC 48 ms
6,656 KB
testcase_21 AC 48 ms
6,656 KB
testcase_22 AC 48 ms
6,656 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 5 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 7 ms
5,376 KB
testcase_38 AC 16 ms
5,376 KB
testcase_39 AC 31 ms
5,376 KB
testcase_40 AC 9 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 1 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 1 ms
5,376 KB
testcase_56 AC 1 ms
5,376 KB
testcase_57 AC 1 ms
5,376 KB
testcase_58 AC 1 ms
5,376 KB
testcase_59 AC 1 ms
5,376 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)
	m := getNextInt(scanner)
	a := cint(getNextInt64(scanner))
	dp := make([][2]cint, n+5)
	for i := 1; i < n+1; i++ {
		dp[i][1] = -a
	}
	ss := make(splits, m)
	for i := 0; i < m; i++ {
		ss[i].l = getNextInt(scanner)
		ss[i].r = getNextInt(scanner) + 1
		ss[i].p = cint(getNextInt64(scanner))
	}

	sort.Sort(ss)

	done := 0
	for i := 0; i < m; i++ {
		for done < ss[i].r {
			dp[done+1][0].max(dp[done][0]).max(dp[done][1])
			done++
		}
		if ss[i].l == 1 {
			if ss[i].r == n+1 {
				dp[ss[i].r][1].max(dp[ss[i].l][0] + ss[i].p).max(dp[ss[i].l][1] + ss[i].p)
			} else {
				dp[ss[i].r][1].max(dp[ss[i].l][0] + ss[i].p - a).max(dp[ss[i].l][1] + ss[i].p)
			}
			continue
		}
		if ss[i].r == n+1 {
			dp[ss[i].r][1].max(dp[ss[i].l][0] + ss[i].p - a).max(dp[ss[i].l][1] + ss[i].p)
		} else {
			dp[ss[i].r][1].max(dp[ss[i].l][0] + ss[i].p - a*2).max(dp[ss[i].l][1] + ss[i].p - a)
		}
	}
	var ans cint
	for i := 0; i < n+5; i++ {
		ans.max(dp[i][0]).max(dp[i][1])
	}
	fmt.Fprintln(writer, ans)
}

type split struct {
	l, r int
	p    cint
}
type splits []split

func (a splits) Len() int           { return len(a) }
func (a splits) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
func (a splits) Less(i, j int) bool { return a[i].r < a[j].r }

type cint int64

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