记录编号 |
228056 |
评测结果 |
AAAAAAAA |
题目名称 |
删掉的边 |
最终得分 |
100 |
用户昵称 |
SOBER GOOD BOY |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.034 s |
提交时间 |
2016-02-19 06:35:47 |
内存使用 |
0.61 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=100100;
int Findroot(int);
void hebing(int,int);
int a[maxn];
int n;
int main()
{
freopen("edges.in","r",stdin);
freopen("edges.out","w",stdout);
int m,n,x,y;
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++)
{
scanf("%d%d",&x,&y);
}
printf("%d",m-(n-1));
return 0;
}