結果

問題 No.1640 簡単な色塗り
ユーザー harurunharurun
提出日時 2021-06-16 11:19:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,537 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 90,352 KB
実行使用メモリ 51,296 KB
最終ジャッジ日時 2024-06-29 14:36:57
合計ジャッジ時間 22,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 4 ms
11,136 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 5 ms
11,264 KB
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 -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 24 ms
15,864 KB
testcase_31 AC 231 ms
51,296 KB
testcase_32 AC 178 ms
40,048 KB
testcase_33 AC 101 ms
29,684 KB
testcase_34 AC 155 ms
39,780 KB
testcase_35 AC 94 ms
30,332 KB
testcase_36 AC 24 ms
15,744 KB
testcase_37 AC 33 ms
17,360 KB
testcase_38 AC 192 ms
42,544 KB
testcase_39 AC 67 ms
26,296 KB
testcase_40 AC 66 ms
23,680 KB
testcase_41 AC 130 ms
33,604 KB
testcase_42 AC 73 ms
26,536 KB
testcase_43 AC 83 ms
29,492 KB
testcase_44 AC 80 ms
25,612 KB
testcase_45 AC 59 ms
22,468 KB
testcase_46 AC 27 ms
16,328 KB
testcase_47 AC 19 ms
14,536 KB
testcase_48 AC 199 ms
41,924 KB
testcase_49 AC 11 ms
12,744 KB
testcase_50 AC 4 ms
11,452 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 TLE -
07_evil_01.txt -- -
07_evil_02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

//時間計測用
//構築未実装
#include <iostream>
#include <stdio.h>
#include <vector>
#include <algorithm>
#include <assert.h>
#include <stdlib.h>
#include <memory.h>
#include <queue>
#include <time.h>
#include <chrono>
#include <sys/time.h>
using namespace std;
#define ll long long
#define INF 1000000000000000000
using std::cout; using std::endl;
using std::chrono::duration_cast;
using std::chrono::milliseconds;
using std::chrono::seconds;
using std::chrono::system_clock;

ostream& operator<<(ostream& os,queue<ll> a){
  while(!a.empty()){
    ll t=a.front();
    a.pop();
    os<<t<<" ";
  }
  return os;
}

ll my_min(ll x,ll y){
  if(x>y)return y;
  return x;
}

struct edge3{
  ll to,cap,rev;
};

ostream& operator<<(ostream& os,edge3& a){
  return os<<a.to<<" "<<a.cap<<" "<<a.rev;
}

ostream& operator<<(ostream& os,vector<edge3>& a){
  for(edge3 i:a){
    os<<i<<"\n";
  }
  return os;
}

//typedef struct Dinic{
  //const ll INF=1000000000000000000;
  const ll MAX_V=200010;
  /*
  vector<edge3>* G;
  ll* level;
  ll* iter;
  */
  vector<edge3> G[200010];
  ll level[200010];
  ll iter[200010];
  //Dinic(){}
  /*
  Dinic(ll max_v){
    MAX_V = max_v;
    G=new vector<edge3>[MAX_V];
    level=new ll[MAX_V];
    iter=new ll[MAX_V];
  }
  */
  void add_edge(ll from,ll to,ll cap){
    G[from].push_back((edge3){to,cap,(ll)G[to].size()});
    G[to].push_back((edge3){from,0,(ll)G[from].size()-1});
  }
  void bfs(ll s){
    memset(level,-1,sizeof(level));
    queue<ll> que;
    level[s]=0;
    que.push(s);
    while(!que.empty()){
      //cout<<que<<endl;
      ll v=que.front();que.pop();
      //cout<<"v"<<v<<endl;
      //cout<<G[v]<<endl;
      for(ll i=0;i<(ll)G[v].size();i++){
        edge3 &e=G[v][i];
        if(e.cap>0 && level[e.to]<0){
          level[e.to]=level[v]+1;
          que.push(e.to);
        }
      }
    }
  }
  ll dfs(ll v,ll t,ll f){
    if(v==t)return f;
    //cout<<"&i:"<<iter[v]<<" "<<G[v].size()<<endl;
    for(ll &i=iter[v];i<(ll)G[v].size();i++){
      edge3 &e=G[v][i];
      //cout<<e.cap<<" "<<level[v]<<" "<<level[e.to]<<endl;
      if(e.cap>0 && level[v]<level[e.to]){
        ll d=dfs(e.to,t,my_min(f,e.cap));
        //cout<<"d:"<<d<<endl;
        if(d>0){
          e.cap-=d;
          G[e.to][e.rev].cap+=d;
          return d;
        }
      }
    }
    return 0;
  }
  ll max_flow(ll s,ll t){
    ll flow=0;
    for(;;){
      bfs(s);
      //cout<<"bfs end\n";
      if(level[t]<0)return flow;
      //cout<<level[t]<<endl;
      memset(iter,0,sizeof(iter));
      ll f;
      while((f=dfs(s,t,INF))>0){
        //cout<<f<<endl;
        flow+=f;
      }
      //cout<<f<<endl;
    }
  }
//};


int main(){
  auto start = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
  ll N,A,B;
  cin>>N;
  //Dinic F(200002);
  //Dinic F;
  //cout<<"INF:"<<F.INF<<endl;
  for(int i=0;i<N;i++){
    //cerr<<i<<endl;
    cin>>A>>B;
    A--;B--;
    /*
    F.add_edge(200000,i,1);
    F.add_edge(i,100000+A,1);
    if(A!=B)F.add_edge(i,100000+B,1);
    F.add_edge(100000+i,200001,1);
    */
    add_edge(200000,i,1);
    add_edge(i,100000+A,1);
    if(A!=B)add_edge(i,100000+B,1);
    add_edge(100000+i,200001,1);
  }
  //cerr<<"edge added\n";
  //ll cnt=F.max_flow(200000,200001);
  ll cnt=max_flow(200000,200001);
  //cout<<cnt<<endl;
  if(cnt!=N){
    cout<<"No\n";
    return 0;
  }
  //ここから構築
  cout<<"Yes\n";
  auto end= duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
  cerr<<end-start<<endl;
  return 0;
}
0