結果
問題 | No.274 The Wall |
ユーザー | blackyuki |
提出日時 | 2021-02-06 15:07:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 686 ms / 2,000 ms |
コード長 | 2,856 bytes |
コンパイル時間 | 2,417 ms |
コンパイル使用メモリ | 213,868 KB |
実行使用メモリ | 260,480 KB |
最終ジャッジ日時 | 2024-07-02 23:42:15 |
合計ジャッジ時間 | 5,132 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 252 ms
127,488 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 686 ms
260,480 KB |
testcase_12 | AC | 10 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 10 ms
5,376 KB |
testcase_16 | AC | 154 ms
70,784 KB |
testcase_17 | AC | 145 ms
67,200 KB |
testcase_18 | AC | 157 ms
72,704 KB |
testcase_19 | AC | 17 ms
5,376 KB |
testcase_20 | AC | 19 ms
5,376 KB |
testcase_21 | AC | 20 ms
5,376 KB |
testcase_22 | AC | 21 ms
5,376 KB |
testcase_23 | AC | 20 ms
5,376 KB |
testcase_24 | AC | 20 ms
5,376 KB |
testcase_25 | AC | 20 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(long long i=0;i<(long long)(n);i++) #define REP(i,k,n) for(long long i=k;i<(long long)(n);i++) #define all(a) a.begin(),a.end() #define rsort(a) {sort(all(a));reverse(all(a));} #define pb emplace_back #define lb(v,k) (lower_bound(all(v),(k))-v.begin()) #define fi first #define se second #define dupli(a) {sort(all(a));a.erase(unique(all(a)),a.end());} #define dame(a) {cout<<a<<endl;return 0;} typedef long long ll; typedef pair<ll,ll> P; typedef tuple<ll,ll,ll> PP; typedef tuple<ll,ll,ll,ll> PPP; using vi=vector<ll>; using vvi=vector<vi>; using vvvi=vector<vvi>; using vvvvi=vector<vvvi>; using vp=vector<P>; using vvp=vector<vp>; using vvvp=vector<vvp>; using vb=vector<bool>; using vvb=vector<vb>; template<class T> bool chmin(T&a,T b){if(a>b){a=b;return true;}return false;} template<class T> bool chmax(T&a,T b){if(a<b){a=b;return true;}return false;} template<class T> void out(T a){cout<<a<<'\n';} template<class T> void outp(T a){cout<<'('<<a.fi<<','<<a.se<<')'<<'\n';} template<class T> void outvp(T v){rep(i,v.size())cout<<'('<<v[i].fi<<','<<v[i].se<<')';cout<<'\n';} template<class T> void outvvp(T v){rep(i,v.size())outvp(v[i]);} template<class T> void outv(T v){rep(i,v.size()){if(i)cout<<' ';cout<<v[i];}cout<<'\n';} template<class T> void outvv(T v){rep(i,v.size())outv(v[i]);} const ll inf=1001001001001001001; vi scc(vvi&g,ll&number_of_components){ ll n=g.size(); number_of_components=0; vvi rg(n);rep(i,n)for(ll x:g[i])rg[x].pb(i); vi topo,res(n); vb visited(n,false); function<void(ll,ll)> dfs=[&](ll i,ll md){ visited[i]=true; if(md==0){ for(ll x:g[i])if(!visited[x])dfs(x,md); topo.pb(i); } else{ for(ll x:rg[i])if(!visited[x])dfs(x,md); res[i]=number_of_components; } }; rep(i,n)if(!visited[i])dfs(i,0); reverse(all(topo)); rep(i,n)visited[i]=false; for(ll i:topo)if(!visited[i]){ dfs(i,1); number_of_components++; } return res; } int main(){ ll n,m;cin>>n>>m; vp v(n);rep(i,n)cin>>v[i].fi>>v[i].se; vvi g(n*2); auto rev=[&](P p){ return P(m-1-p.se,m-1-p.fi); }; auto no=[&](P a,P b){ if(a.se<b.fi)return false; if(b.se<a.fi)return false; return true; }; rep(i,n)rep(j,i){ if(no(v[i],v[j])){ g[i].pb(j+n); g[j].pb(i+n); } if(no(rev(v[i]),v[j])){ g[i+n].pb(j+n); g[j].pb(i); } if(no(v[i],rev(v[j]))){ g[i].pb(j); g[j+n].pb(i+n); } if(no(rev(v[i]),rev(v[j]))){ g[i+n].pb(j); g[j+n].pb(i); } } ll c;vi res=scc(g,c); rep(i,n)if(res[i]==res[i+n])dame("NO"); out("YES"); }