結果

問題 No.488 四角関係
ユーザー pekempeypekempey
提出日時 2017-02-24 22:29:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 804 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 80,492 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-10 22:46:11
合計ジャッジ時間 6,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 381 ms
5,248 KB
testcase_01 AC 233 ms
5,376 KB
testcase_02 AC 362 ms
5,376 KB
testcase_03 AC 119 ms
5,376 KB
testcase_04 AC 196 ms
5,376 KB
testcase_05 AC 445 ms
5,376 KB
testcase_06 AC 779 ms
5,376 KB
testcase_07 AC 804 ms
5,376 KB
testcase_08 AC 770 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 82 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 36 ms
5,376 KB
testcase_13 AC 70 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <map>

using namespace std;

int g[50][50];

int main() {
	int n, m;
	cin >> n >> m;
	for (int i = 0; i < m; i++) {
		int u, v;
		cin >> u >> v;
		g[u][v] = true;
		g[v][u] = true;
	}
	int ans = 0;
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < n; j++) {
			for (int k = 0; k < n; k++) {
				for (int l = 0; l < n; l++) {
					set<int> st;
					st.insert(i);
					st.insert(j);
					st.insert(k);
					st.insert(l);
					if (st.size() < 4) {
						continue;
					}
					if (g[i][k] || g[j][l]) {
						continue;
					}
					if (g[i][j] && g[j][k] && g[k][l] && g[l][i]) {
						ans++;
					}
				}
			}
		}
	}
	cout << ans / 8 << endl;
}
0