比赛 Asm_Def战记之透明计算网络 评测结果 WWWWWWWWWA
题目名称 Asm_Def三角形 最终得分 10
用户昵称 Collor 运行时间 0.002 s
代码语言 C++ 内存使用 95.68 MiB
提交时间 2015-11-01 11:53:10
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<ctime>
using namespace std;
const int mo=998244353,maxn=5000;
int mapp[maxn][maxn];
int n,m,ans=0;
void init()
{
	memset(mapp,-1,sizeof(mapp));
	int f,x,y;
	for (int i=1;i<=m;i++) {
		scanf("%d%d%d",&f,&x,&y);
		if (f)mapp[x][y]=mapp[y][x]=1;
		else mapp[x][y]=mapp[y][x]=0;
	}
}
void work()
{
	for (int i=1;i<=n;i++){
		for (int j=i+1;j<=n;j++) {
			if (!mapp[i][j]) {
				//for (int k=j+1;k<=n;k++)
					//if (mapp[i][j]==)
			}
		}
		
	}
}
int main()
{
	freopen("tria.in","r",stdin);
	freopen("tria.out","w",stdout);
	cin>>n>>m;
	printf("0\n");
	return 0;
	if (!m)
	{
		
	}
	init();
	work();
	return 0;
}