結果

問題 No.709 優勝可能性
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-13 14:58:27
言語 Go
(1.21.3)
結果
AC  
実行時間 117 ms / 3,500 ms
コード長 2,140 bytes
コンパイル時間 11,158 ms
コンパイル使用メモリ 215,912 KB
実行使用メモリ 47,860 KB
最終ジャッジ日時 2023-09-07 12:19:40
合計ジャッジ時間 15,891 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 51 ms
9,920 KB
testcase_11 AC 33 ms
7,864 KB
testcase_12 AC 94 ms
14,268 KB
testcase_13 AC 97 ms
18,492 KB
testcase_14 AC 83 ms
16,524 KB
testcase_15 AC 78 ms
18,740 KB
testcase_16 AC 86 ms
29,092 KB
testcase_17 AC 107 ms
47,860 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 117 ms
14,220 KB
testcase_21 AC 117 ms
14,220 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func configure(scanner *bufio.Scanner) {
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
}
func getNextString(scanner *bufio.Scanner) string {
	scanned := scanner.Scan()
	if !scanned {
		panic("scan failed")
	}
	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 getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	extra := 0
	if os.Getenv("I") == "IronMan" {
		fp, _ = os.Open(os.Getenv("END_GAME"))
		extra = 100
	}
	scanner := bufio.NewScanner(fp)
	configure(scanner)
	writer := bufio.NewWriter(wfp)
	defer func() {
		r := recover()
		if r != nil {
			fmt.Fprintln(writer, r)
		}
		writer.Flush()
	}()
	solve(scanner, writer)
	for i := 0; i < extra; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	m := getNextInt(scanner)
	usi := make([]uint32, n)
	for i := 0; i < n; i++ {
		usi[i] = 1<<uint(m) - 1
	}
	ll := make([][]pair, m)
	rr := makeGrid(n, m)
	cbox := 0
	for r := 0; r < n; r++ {
		for i := 0; i < m; i++ {
			rr[r][i] = getNextInt(scanner)
			if len(ll[i]) > 0 && ll[i][0][1] > rr[r][i] {
				usi[r] = usi[r] ^ 1<<uint(i)
				if usi[r] == 0 {
					cbox--
				}
				continue
			}
			ll[i] = append(ll[i], pair{r, rr[r][i]})
		}
		cbox++
		for i := 0; i < m; i++ {
			for len(ll[i]) > 0 && ll[i][len(ll[i])-1][1] > ll[i][0][1] {
				usi[ll[i][0][0]] = usi[ll[i][0][0]] ^ 1<<uint(i)
				if usi[ll[i][0][0]] == 0 {
					cbox--
				}
				ll[i] = ll[i][1:]
			}
		}
		fmt.Fprintln(writer, cbox)
	}
}
func makeGrid(h, w int) [][]int {
	index := make([][]int, h, h)
	data := make([]int, h*w, h*w)
	for i := 0; i < h; i++ {
		index[i] = data[i*w : (i+1)*w]
	}
	return index
}

type pair [2]int
0