結果
問題 | No.1147 土偶Ⅱ |
ユーザー | KKT89 |
提出日時 | 2020-08-05 18:42:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,426 bytes |
コンパイル時間 | 1,383 ms |
コンパイル使用メモリ | 120,968 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 10:12:07 |
合計ジャッジ時間 | 2,760 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <queue> #include <cstdio> #include <ctime> #include <assert.h> #include <chrono> #include <random> #include <numeric> #include <set> #include <deque> #include <stack> #include <bitset> using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; int m; cin >> m; set<pair<int,int>> s; while(m--){ int x,y; cin >> x >> y; s.insert({x,y}); } int res=n*(n-1)*(n-2)/6; set<pair<int,int>> out; for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++){ for(int k=j+1;k<=n;k++){ int cnt=0; if(s.find({i,j})!=s.end())cnt++; if(s.find({i,k})!=s.end())cnt++; if(s.find({j,k})!=s.end())cnt++; if(cnt==2){ if(s.find({i,j})==s.end())out.insert({i,j}); if(s.find({i,k})==s.end())out.insert({i,k}); if(s.find({j,k})==s.end())out.insert({j,k}); } } } } for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++){ for(int k=j+1;k<=n;k++){ bool ok=1; if(out.find({i,j})!=out.end())ok=0; if(out.find({i,k})!=out.end())ok=0; if(out.find({j,k})!=out.end())ok=0; if(!ok)res--; } } } for(auto p:out){ // cout << p.first << " " << p.second<< endl; } printf("%d\n",res ); }