結果
問題 | No.274 The Wall |
ユーザー | hashiryo |
提出日時 | 2019-06-07 20:46:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 222 ms / 2,000 ms |
コード長 | 2,043 bytes |
コンパイル時間 | 1,648 ms |
コンパイル使用メモリ | 183,228 KB |
実行使用メモリ | 140,468 KB |
最終ジャッジ日時 | 2024-06-22 02:27:27 |
合計ジャッジ時間 | 3,036 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 77 ms
61,680 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 222 ms
140,468 KB |
testcase_12 | AC | 11 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 4 ms
6,940 KB |
testcase_15 | AC | 8 ms
6,944 KB |
testcase_16 | AC | 68 ms
36,956 KB |
testcase_17 | AC | 61 ms
35,488 KB |
testcase_18 | AC | 63 ms
38,256 KB |
testcase_19 | AC | 15 ms
6,940 KB |
testcase_20 | AC | 16 ms
6,944 KB |
testcase_21 | AC | 17 ms
6,940 KB |
testcase_22 | AC | 17 ms
6,940 KB |
testcase_23 | AC | 18 ms
6,940 KB |
testcase_24 | AC | 18 ms
6,940 KB |
testcase_25 | AC | 17 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> #define debug(x) cerr << #x << ": " << x << '\n' #define debugArray(x,n) for(long long hoge = 0; (hoge) < (n); ++ (hoge)) cerr << #x << "[" << hoge << "]: " << x[hoge] << '\n' using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<ll> vll; const ll INF = INT_MAX; const ll MOD = 20171211; struct Edge{ ll dst; Edge(ll t):dst(t){} }; using Edges=vector<Edge>; using Graph=vector<Edges>; vector<vector<int>> SCC(const Graph& g,vector<int> &I) { ll n=g.size(); vector<vector<int>> scc; vector<int> S, B; I.assign(n,0); function<void(int)> dfs = [&](int u) { B.push_back(I[u] = S.size()); S.push_back(u); for(Edge e: g[u]) { int v=e.dst; if (!I[v]) dfs(v); else while (I[v] < B.back()) B.pop_back(); } if (I[u] == B.back()) { scc.push_back({}); B.pop_back(); for (; I[u] < (int)S.size(); S.pop_back()) { scc.back().push_back(S.back()); I[S.back()] = n + scc.size(); } } }; for(int u=0;u<n;u++)if (!I[u]) dfs(u); for(int u=0;u<n;u++)I[u] -= n+1; return scc; } signed main(){ cin.tie(0); ios::sync_with_stdio(false); ll N,M;cin>>N>>M; vll L(N),R(N); for(ll i=0;i<N;i++){ cin>>L[i]>>R[i]; } Graph G(2*N); for(ll i=0;i<N;i++){ for(ll j=i+1;j<N;j++){ if(L[i]<=R[j]&&L[j]<=R[i])G[i].emplace_back(N+j),G[N+j].emplace_back(i); if(L[i]<=(M-1-L[j])&&(M-1-R[j])<=R[i])G[i].emplace_back(j),G[j].emplace_back(i); if((M-1-R[i])<=R[j]&&L[j]<=(M-1-L[i]))G[N+i].emplace_back(N+j),G[N+j].emplace_back(N+i); if((M-1-R[i])<=(M-1-L[j])&&(M-1-R[j])<=(M-1-L[i]))G[N+1].emplace_back(j),G[j].emplace_back(N+i); } } vector<int> idx; vector<vector<int>> scc=SCC(G,idx); /* debug(scc.size()); debugArray(idx,N*2); */ bool isok=true; for(ll i=0;i<N;i++){ isok &= idx[i]!=idx[N+i]; } cout<<(isok? "YES":"NO")<<endl; return 0; }