結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー yuki2006yuki2006
提出日時 2016-10-14 23:36:34
言語 Go
(1.22.1)
結果
AC  
実行時間 156 ms / 4,000 ms
コード長 2,589 bytes
コンパイル時間 16,766 ms
コンパイル使用メモリ 224,280 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-11-22 11:46:12
合計ジャッジ時間 21,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
12,928 KB
testcase_01 AC 120 ms
12,928 KB
testcase_02 AC 83 ms
10,368 KB
testcase_03 AC 116 ms
9,600 KB
testcase_04 AC 118 ms
9,600 KB
testcase_05 AC 99 ms
10,496 KB
testcase_06 AC 156 ms
12,928 KB
testcase_07 AC 91 ms
12,928 KB
testcase_08 AC 81 ms
10,368 KB
testcase_09 AC 97 ms
9,472 KB
testcase_10 AC 108 ms
8,192 KB
testcase_11 AC 126 ms
8,320 KB
testcase_12 AC 119 ms
8,320 KB
testcase_13 AC 78 ms
8,064 KB
testcase_14 AC 96 ms
8,064 KB
testcase_15 AC 65 ms
7,936 KB
testcase_16 AC 137 ms
8,320 KB
testcase_17 AC 135 ms
8,320 KB
testcase_18 AC 138 ms
8,320 KB
testcase_19 AC 79 ms
8,064 KB
testcase_20 AC 90 ms
8,064 KB
testcase_21 AC 85 ms
8,064 KB
testcase_22 AC 121 ms
8,192 KB
testcase_23 AC 100 ms
8,192 KB
testcase_24 AC 78 ms
8,064 KB
testcase_25 AC 111 ms
8,192 KB
testcase_26 AC 88 ms
8,064 KB
testcase_27 AC 112 ms
8,192 KB
testcase_28 AC 77 ms
8,064 KB
testcase_29 AC 120 ms
8,192 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 134 ms
8,576 KB
testcase_33 AC 142 ms
8,576 KB
testcase_34 AC 87 ms
10,112 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 8 ms
5,248 KB
testcase_42 AC 9 ms
5,248 KB
testcase_43 AC 7 ms
5,248 KB
testcase_44 AC 7 ms
5,248 KB
testcase_45 AC 3 ms
5,248 KB
testcase_46 AC 24 ms
5,248 KB
testcase_47 AC 23 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

type Scanner struct {
	r   *bufio.Reader
	buf []byte
	p   int
}

func NewScanner() *Scanner {
	rdr := bufio.NewReaderSize(os.Stdin, 1000)
	return &Scanner{r:rdr}
}
func (s *Scanner) Next() string {
	s.pre()
	start := s.p
	for ; s.p < len(s.buf); s.p++ {
		if s.buf[s.p] == ' ' {
			break
		}
	}
	result := string(s.buf[start:s.p])
	s.p++
	return result
}
func (s *Scanner) NextLine() string {
	s.pre()
	start := s.p
	s.p = len(s.buf)
	return string(s.buf[start:])
}
func (s *Scanner) NextInt() int {
	v, _ := strconv.Atoi(s.Next())
	return v
}

func (s *Scanner) NextIntArray() []int {
	s.pre()
	start := s.p
	result := []int{}
	for ; s.p < len(s.buf); s.p++ {
		if s.buf[s.p] == ' ' {
			v, _ := strconv.Atoi(string(s.buf[start:s.p]))
			result = append(result, v)
			start = s.p + 1
		}
	}
	v, _ := strconv.Atoi(string(s.buf[start:s.p]))
	result = append(result, v)

	return result
}

func (s *Scanner) NextMap() map[int]bool {
	s.pre()
	start := s.p
	mp := map[int]bool{}
	for ; s.p < len(s.buf); s.p++ {
		if s.buf[s.p] == ' ' {
			v, _ := strconv.Atoi(string(s.buf[start:s.p]))
			mp[v] = true
			start = s.p + 1
		}
	}
	v, _ := strconv.Atoi(string(s.buf[start:s.p]))
	mp[v] = true

	return mp
}

func (s *Scanner) pre() {
	if s.p >= len(s.buf) {
		s.readLine()
		s.p = 0
	}
}
func (s *Scanner) readLine() {
	s.buf = make([]byte, 0)
	for {
		l, p, e := s.r.ReadLine()
		if e != nil {
			panic(e)
		}
		s.buf = append(s.buf, l...)
		if !p {
			break
		}
	}
}

type Team struct {
	Solve   int
	Penalty int
	Univ    int
	Upper   int
	Index   int
}

var sortMode = 0

type SortInterFace []Team

func (s SortInterFace) Len() int {
	return len(s)
}
func (s SortInterFace) Less(i, j int) bool {
	if sortMode == 0 {
		if s[i].Solve != s[j].Solve {
			return s[i].Solve > s[j].Solve
		}
		return s[i].Penalty < s[j].Penalty
	} else {
		if s[i].Solve != s[j].Solve {
			return s[i].Solve > s[j].Solve
		}
		if s[i].Upper != s[j].Upper {
			return s[i].Upper < s[j].Upper
		}
		return s[i].Penalty < s[j].Penalty
	}
}
func (s SortInterFace) Swap(i, j int) {
	s[i], s[j] = s[j], s[i]
}

func main() {
	sc := NewScanner()
	N, K := sc.NextInt(), sc.NextInt()

	mp := map[int]int{}

	teams := make(SortInterFace, N)
	for i := 0; i < N; i++ {
		teams[i] = Team{sc.NextInt(), sc.NextInt(), sc.NextInt(), 0, 0}
		teams[i].Index = i
	}

	sort.Sort(teams)
	for i := 0; i < N; i++ {
		mp[teams[i].Univ]++
		teams[i].Upper = mp[teams[i].Univ]
	}
	sortMode = 1
	sort.Sort(teams)
	for i := 0; i < K; i++ {
		fmt.Println(teams[i].Index)
	}
}
0