結果

問題 No.488 四角関係
ユーザー wunderkammer2wunderkammer2
提出日時 2021-06-02 22:42:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 4,155 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 132,600 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-15 18:45:08
合計ジャッジ時間 2,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #
プレゼンテーションモードにする

#include<algorithm> //sort,,
#include<bit> //popcount
#include<bitset> //bit
#include<cmath> //pow,log
#include<complex> //
#include<deque> //
#include<fstream> //
#include<functional> //sortgreater
#include<iomanip> //setprecision()
#include<iostream> //
#include<iterator> //(,,)
#include<map> //map()
#include<numeric> //iota(),gcdlcm(c++17)
#include<queue> //
#include<set> //
#include<stack> //
#include<string> //
#include<unordered_map> //map
#include<unordered_set> //set
#include<utility> //pair
#include<vector> //
//#include<atcoder\all>
//using namespace atcoder;
//
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef map<string, int> msi;
typedef map<string, ll> msll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pllll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<string> vs;
typedef vector<bool> vb;
typedef vector<vector<int>> vvi;
typedef vector<vector<ll>> vvll;
typedef vector<vector<string>> vvs;
typedef vector<vector<bool>> vvb;
//
const ll MOD = 1000000007;
const ll INF = 1000000000000000000;
const int MAXR = 100000; //10^5:range
//
#define rep(i,n) for(int i=0;i<n;i++)
#define reps(i,s,e) for(int i=s;i<e;i++)
#define repse(i,s,e) for(int i=s;i<=e;i++)
#define rrep(i,n) for(int i=n-1;i>=0;i--)
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define in1(x1) cin >> x1
#define in2(x1, x2) cin >> x1 >> x2
#define in3(x1, x2, x3) cin >> x1 >> x2 >> x3
#define in4(x1, x2, x3, x4) cin >> x1 >> x2 >> x3 >> x4
#define in5(x1, x2, x3, x4, x5) cin >> x1 >> x2 >> x3 >> x4 >> x5
#define in6(x1, x2, x3, x4, x5, x6) cin >> x1 >> x2 >> x3 >> x4 >> x5 >> x6
#define inN(x, N) rep(i, N) in1(x[i])
#define outl(x) cout << x << endl
#define out2l(x, y) cout << x << " " << y << endl
#define out4l(x1, x2, x3, x4) cout << x1 << " " << x2 << " " << x3 << " " << x4 << endl
#define outList(x) for(auto y : x) cout << y << " ";cout << endl
//使
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
inline ll div_ceil(ll a, ll b) { return (a + (b - 1)) / b; }
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
//
//std::ifstream in("input.txt");
//std::cin.rdbuf(in.rdbuf());
int N, M;
in2(N, M);
vvb G(N, vb(N));
rep(_, M)
{
int a, b;
in2(a, b);
G[a][b] = G[b][a] = true;
}
ll ans = 0;
rep(i, N)
{
reps(j, i + 1, N)
{
reps(k, j + 1, N)
{
reps(l, k + 1, N)
{
//
//i,j,k,l
vi pos = { i, j, k, l };
bool flg = true;
for (auto x : pos)
{
int cnt = 0;
for (auto y : pos)
{
if (y == x) continue;
if(G[x][y]) cnt++;
}
if (cnt != 2)
{
flg = false;
break;
}
}
if (flg) ans++;
}
}
}
}
outl(ans);
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0