結果

問題 No.488 四角関係
ユーザー 👑 CleyLCleyL
提出日時 2021-11-23 07:51:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 722 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 76,084 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 03:17:56
合計ジャッジ時間 1,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 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 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
using namespace std;
struct l{
  int x,y;
};
int main(){
  int n,m;cin>>n>>m;
  vector<vector<int>> A(n,vector<int>(n));
  for(int i = 0; m > i; i++){
    int x,y;cin>>x>>y;
    A[x][y] = 1;
    A[y][x] = 1;
  }
  int ans = 0;
  for(int i = 0; n > i; i++){
    for(int j = i+1; n > j; j++){
      for(int k = j+1; n > k; k++){
        for(int l = k+1; n > l; l++){
         if(A[i][j] && A[j][k] && A[k][l] && A[l][i] && !A[i][k] && !A[j][l])ans++;
         if(A[i][k] && A[k][l] && A[l][j] && A[j][i] && !A[l][i] && !A[k][j])ans++;
         if(A[i][k] && A[k][j] && A[j][l] && A[l][i] && !A[i][j] && !A[k][l])ans++;
        }
      }
    }
  }
  cout << ans << endl;
}
0