結果
問題 | No.580 旅館の予約計画 |
ユーザー | ccppjsrb |
提出日時 | 2020-09-04 12:56:29 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,979 bytes |
コンパイル時間 | 13,639 ms |
コンパイル使用メモリ | 223,828 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 01:43:12 |
合計ジャッジ時間 | 14,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" "strings" ) 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) mm := make([]pair, m) for i := 0; i < m; i++ { mm[i][0] = datetominites(getNextInt(scanner), getNextString(scanner)) mm[i][1] = datetominites(getNextInt(scanner), getNextString(scanner)) } sort.Slice(mm, func(i, j int) bool { return mm[i][1] < mm[j][1] }) var ans int q := make([]int, 0) for i := 0; i < m; i++ { for len(q) > 0 && q[0] < mm[i][0] { q = q[1:] } if len(q) < n { q = append(q, mm[i][1]) ans++ } } fmt.Fprintln(writer, ans) } func datetominites(d int, s string) int { hm := strings.Split(s, ":") return d*24*60 + strtoint(hm[0])*24 + strtoint(hm[1]) } func strtoint(s string) int { return int(s[0]-'0')*10 + int(s[1]-'0') } type pair [2]int