/ SB域 /

记录详情

Time Exceeded


  
# 状态 耗时 内存占用
#1 Accepted 2ms 332.0 KiB
#2 Wrong Answer 3ms 588.0 KiB
#3 Accepted 1ms 332.0 KiB
#4 Accepted 3ms 588.0 KiB
#5 Accepted 1ms 332.0 KiB
#6 Time Exceeded ≥1000ms ≥696.0 KiB
#7 Accepted 2ms 460.0 KiB
#8 Wrong Answer 484ms 544.0 KiB
#9 Wrong Answer 40ms 592.0 KiB
#10 Wrong Answer 2ms 584.0 KiB

代码

#include<iostream>
using namespace std;
int mmap[505][505][2];int n,m; int temp=0;int temp2=0;
void go(int x)
{  
    
	for(int i=1;i<=n;i++)
	{
		if(mmap[x][i][0]==1)
		{   temp++;
			go(i);
		}
	}
}
void go2(int x)
{   
    
	for(int i=1;i<=n;i++)
	{
		if(mmap[x][i][1]==1)
		{   temp2++;
			go2(i);
		}
	}
}
int main()
{
	
	cin>>n>>m;
	for(int i=1;i<=m;i++)
	{
		int x,y;
		cin>>x>>y;
		mmap[x][y][0]=1;
		mmap[y][x][1]=1;
	}int ans=0;
		for(int j=1;j<=n;j++)
	{   temp=0; temp2=0;go(j);go2(j);
	
		if(temp>(n-1)/2)
		ans++;
		if(temp2>(n-1)/2)ans++;
	}
	cout<<ans;
	return 0;
} 

信息

递交者
类型
递交
题目
珍珠
题目数据
下载
语言
C++
递交时间
2019-03-27 13:47:51
评测时间
2019-03-27 13:47:51
评测机
分数
50
总耗时
≥1544ms
峰值内存
≥696.0 KiB