結果

問題 No.488 四角関係
ユーザー moririn2528_cmoririn2528_c
提出日時 2017-02-24 22:52:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 56,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 22:57:19
合計ジャッジ時間 1,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,816 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int path[55][55];

int check(int a,int b,int c,int d){
	if(a==b)return 1;
	if(a==c)return 1;
	if(a==d)return 1;
	if(b==c)return 1;
	if(b==d)return 1;
	if(c==d)return 1;
	return 0;
}

int main(){
	int n,m;
	int i,j,k,l;
	int a,b,c,s=0;
	cin>>n>>m;
	for(i=0;i<m;i++){
		cin>>a>>b;
		path[a][b]=1;
		path[b][a]=1;
	}
	for(i=0;i<n;i++){
		for(j=0;j<n;j++){
			for(k=0;k<n;k++){
				for(l=0;l<n;l++){
					if(check(i,j,k,l)==1)continue;
					a=path[i][j]+path[j][k]+path[k][l]+path[l][i];
					a-=path[i][k]+path[j][l];
					if(a==4)s++;
				}
			}
		}
	}
	cout<<s/8<<endl;
	return 0;
}
0