結果
問題 | No.245 貫け! |
ユーザー | yuki2006 |
提出日時 | 2015-07-17 21:33:24 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 11,592 ms |
コンパイル使用メモリ | 225,864 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 19:14:08 |
合計ジャッジ時間 | 12,537 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 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 | - |
ソースコード
package main import ( "fmt" "bufio" "os" "strconv" ) type Point struct { X int Y int } type Vector struct { X int Y int } type Line struct{ A Point B Point } func vec(p1 Point, p2 Point) Vector { return Vector{p2.X - p1.X, p2.Y - p1.Y} } func cross(p1 Vector, p2 Vector) int { return p1.X * p2.Y - p1.Y * p2.X } func intersect(p1 Point, p2 Point, l Line) bool { return cross(vec(p1, p2), vec(p1, l.A))*cross(vec(p1, p2), vec(p1, l.B)) <= 0 } func main() { var N int fmt.Scanf("%d", &N) var p = make([]Point, 2*N) var lines = make([]Line, N) for i := 0; i < N; i++ { fmt.Scanf("%d %d %d %d", &p[2*i].X, &p[2*i].Y, &p[2*i+1].X, &p[2*i+1].Y) lines[i].A = p[2*i] lines[i].B = p[2*i+1] } mx := 0 for i := 0; i < 2*N; i++ { for j := 0; j < 2*N; j++ { count := 0 for k := 0; k < N; k+=1 { if intersect(p[i], p[j], lines[k]) { count+=1 } } mx = max(mx, count) } } fmt.Println(mx) } var s = bufio.NewScanner(os.Stdin) func next() string { s.Split(bufio.ScanWords) s.Scan() return s.Text() } func nextLine() string { s.Split(bufio.ScanLines) s.Scan() return s.Text() } func nextInt() int { i, e := strconv.Atoi(next()) if e != nil { panic(e) } return i } func nextLong() int64 { i, e := strconv.ParseInt(next(), 10, 64) if e != nil { panic(e) } return i } func max(a int, b int) int { if a < b { return b } return a }