记录编号 |
293602 |
评测结果 |
AAAAAAA |
题目名称 |
[POI 1997] 单色三角形 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.052 s |
提交时间 |
2016-08-10 21:04:03 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1010;
int n,m,a[maxn]={0},x,y,ans=0;
int main(){
#define MINE
#ifdef MINE
freopen("tro.in","r",stdin);
freopen("tro.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
while(m--){
scanf("%d%d",&x,&y);
a[x]++;
a[y]++;
}
for(int i=1;i<=n;i++)ans+=a[i]*(n-1-a[i]);
printf("%d",n*(n-1)*(n-2)/6-(ans>>1));
return 0;
}