結果

問題 No.1147 土偶Ⅱ
ユーザー okazakisteveokazakisteve
提出日時 2020-08-04 17:32:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 500 ms
コード長 743 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 72,332 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 10:11:27
合計ジャッジ時間 1,461 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string> 
#include <vector> 
using namespace std;

int main() {
  int n,m;
  cin >> n >> m;
  vector<vector<int>> G(n, vector<int>(n, 1000000000));
  for(int i = 0; i < n; i++)G[i][i] = 0;
  for(int i = 0; i < m; i++){
    int a,b;
    cin >> a >> b;
    G[a-1][b-1] = 1;
    G[b-1][a-1] = 1;
  }
  for(int k = 0; k < n; k++){
    for(int i = 0; i < n; i++){
      for(int j = 0; j < n; j++){
        G[i][j] = min(G[i][j], G[i][k] + G[k][j]);
      }
    }
  }
  int ans = (n*(n-1)*(n-2)/6);
  for(int i = 0; i < n-2; i++){
    for(int j = i+1; j < n-1; j++){
      for(int k = j+1; k < n; k++){
        if(G[i][j] == 2 || G[j][k] == 2 || G[i][k] == 2)ans--;
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0