結果
問題 | No.274 The Wall |
ユーザー | askr58 |
提出日時 | 2023-09-21 01:01:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,403 bytes |
コンパイル時間 | 5,140 ms |
コンパイル使用メモリ | 265,952 KB |
実行使用メモリ | 40,608 KB |
最終ジャッジ日時 | 2024-07-06 19:45:22 |
合計ジャッジ時間 | 7,757 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll=long long; ll inf=1000000000000000; using mint=modint998244353; using pint=pair<mint,mint>; bool is_prime(int l1,int l2,int r1,int r2){ return !((l1<=r2&&r2<=r1)||(l2<=r1&&r1<=r2)); } int main() { int n,m; cin>>n>>m; vector<pair<int,int>> s(n); for(int i=0;i<n;i++)cin>>s[i].first>>s[i].second; vector<vector<int>> graph(n*2); for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(i==j)continue; int l1=s[i].first,l2=s[j].first,r1=s[i].second,r2=s[j].second; if(!is_prime(l1,l2,r1,r2))graph[i].push_back(j+n); if(!is_prime(l1,m-1-r2,r1,m-1-l2))graph[i].push_back(j); if(!is_prime(m-1-r1,l2,m-1-l1,r2))graph[i+n].push_back(j+n); if(!is_prime(m-1-r1,m-1-r2,m-1-l1,m-1-l2))graph[i+n].push_back(j); } } function<bool(int,int,vector<bool>&)> dfs=[&](int i,int goal,vector<bool>& seen){ if(seen[i])return false; else seen[i]=true; if(i==goal)return true; for(int x:graph[i]){ if(dfs(x,goal,seen))return true; } return false; }; bool ok=true; for(int i=0;i<n;i++){ vector<bool> seen1(2*n),seen2(2*n); if(dfs(i,n+i,seen1)&&dfs(n+i,i,seen2))ok=false; } cout<<(ok?"YES":"No")<<endl; }