結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー ID 21712ID 21712
提出日時 2024-11-14 10:30:03
言語 Go
(1.22.1)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 15,808 ms
コンパイル使用メモリ 237,716 KB
実行使用メモリ 14,068 KB
最終ジャッジ日時 2024-11-14 12:26:38
合計ジャッジ時間 17,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 120 ms
14,044 KB
testcase_04 AC 21 ms
7,768 KB
testcase_05 AC 90 ms
9,964 KB
testcase_06 AC 76 ms
11,976 KB
testcase_07 AC 97 ms
9,968 KB
testcase_08 AC 77 ms
11,924 KB
testcase_09 AC 121 ms
12,096 KB
testcase_10 AC 121 ms
14,068 KB
testcase_11 AC 102 ms
11,980 KB
testcase_12 AC 71 ms
9,904 KB
testcase_13 AC 32 ms
6,816 KB
testcase_14 AC 68 ms
7,916 KB
testcase_15 AC 70 ms
10,164 KB
testcase_16 AC 139 ms
12,776 KB
testcase_17 AC 36 ms
7,708 KB
testcase_18 AC 61 ms
9,896 KB
testcase_19 AC 13 ms
7,644 KB
testcase_20 AC 78 ms
10,180 KB
testcase_21 AC 44 ms
7,940 KB
testcase_22 AC 46 ms
7,844 KB
testcase_23 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	c:=make([]int,2*n+2)
	g:=make([][]int,2*n+1)
	for ;m>0;m-- {
		var a,b int
		Fscan(rd,&a,&b)
		g[a]=append(g[a],b)
		g[b]=append(g[b],a)
	}
	v:=make([]bool,2*n+1)
	p:=0
	for i,t:=range g{
		if v[i] {
			continue
		}
		v[i]=true
		p++
		c[p]++
		es:=t[:]
		for len(es)>0 {
			e:=es[len(es)-1]
			es=es[:len(es)-1]
			if v[e] {
				continue
			}
			v[e]=true
			c[p]++
			es=append(es,g[e]...)
		}
		
	}
	var ans int
	for _,v:=range c[2:] {
		ans+=v%2
	}
	ans/=2
	Println(ans)
}
0