結果

問題 No.1382 Travel in Mitaru city
ユーザー 蜜蜂蜜蜂
提出日時 2021-02-06 22:20:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 3,469 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 184,596 KB
実行使用メモリ 21,112 KB
最終ジャッジ日時 2023-09-17 06:35:53
合計ジャッジ時間 12,272 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 63 ms
6,016 KB
testcase_07 AC 51 ms
5,612 KB
testcase_08 AC 30 ms
5,228 KB
testcase_09 AC 69 ms
6,104 KB
testcase_10 AC 65 ms
5,992 KB
testcase_11 AC 147 ms
13,560 KB
testcase_12 AC 150 ms
13,824 KB
testcase_13 AC 155 ms
13,916 KB
testcase_14 AC 142 ms
13,692 KB
testcase_15 AC 146 ms
13,604 KB
testcase_16 AC 263 ms
20,736 KB
testcase_17 AC 257 ms
20,780 KB
testcase_18 AC 257 ms
20,664 KB
testcase_19 AC 263 ms
20,856 KB
testcase_20 AC 262 ms
20,680 KB
testcase_21 AC 264 ms
20,956 KB
testcase_22 AC 264 ms
20,732 KB
testcase_23 AC 266 ms
20,936 KB
testcase_24 AC 268 ms
20,740 KB
testcase_25 AC 266 ms
20,680 KB
testcase_26 AC 134 ms
11,272 KB
testcase_27 AC 131 ms
11,176 KB
testcase_28 AC 135 ms
11,264 KB
testcase_29 AC 134 ms
11,272 KB
testcase_30 AC 132 ms
11,180 KB
testcase_31 AC 112 ms
10,208 KB
testcase_32 AC 140 ms
11,732 KB
testcase_33 AC 122 ms
11,076 KB
testcase_34 AC 83 ms
8,540 KB
testcase_35 AC 56 ms
6,744 KB
testcase_36 AC 93 ms
10,164 KB
testcase_37 AC 15 ms
4,384 KB
testcase_38 AC 103 ms
10,916 KB
testcase_39 AC 27 ms
5,156 KB
testcase_40 AC 78 ms
9,152 KB
testcase_41 AC 86 ms
9,596 KB
testcase_42 AC 105 ms
11,224 KB
testcase_43 AC 91 ms
10,220 KB
testcase_44 AC 37 ms
6,060 KB
testcase_45 AC 83 ms
9,372 KB
testcase_46 AC 32 ms
5,548 KB
testcase_47 AC 117 ms
11,100 KB
testcase_48 AC 81 ms
8,712 KB
testcase_49 AC 124 ms
11,844 KB
testcase_50 AC 57 ms
7,108 KB
testcase_51 AC 203 ms
18,304 KB
testcase_52 AC 246 ms
21,112 KB
testcase_53 AC 46 ms
7,208 KB
testcase_54 AC 99 ms
11,600 KB
testcase_55 AC 236 ms
20,208 KB
testcase_56 AC 69 ms
9,108 KB
testcase_57 AC 146 ms
14,700 KB
testcase_58 AC 22 ms
5,160 KB
testcase_59 AC 64 ms
8,840 KB
testcase_60 AC 226 ms
19,796 KB
testcase_61 AC 3 ms
4,384 KB
testcase_62 AC 2 ms
4,380 KB
testcase_63 AC 14 ms
4,384 KB
testcase_64 AC 5 ms
4,384 KB
testcase_65 AC 2 ms
4,384 KB
testcase_66 AC 4 ms
4,380 KB
testcase_67 AC 4 ms
4,384 KB
testcase_68 AC 7 ms
4,380 KB
testcase_69 AC 3 ms
4,380 KB
testcase_70 AC 8 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


#include <algorithm>
#include <cassert>
#include <vector>

namespace atcoder {

struct dsu {
  public:
    dsu() : _n(0) {}
    explicit dsu(int n) : _n(n), parent_or_size(n, -1) {}

    int merge(int a, int b) {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        int x = leader(a), y = leader(b);
        if (x == y) return x;
        if (-parent_or_size[x] < -parent_or_size[y]) std::swap(x, y);
        parent_or_size[x] += parent_or_size[y];
        parent_or_size[y] = x;
        return x;
    }

    bool same(int a, int b) {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        return leader(a) == leader(b);
    }

    int leader(int a) {
        assert(0 <= a && a < _n);
        if (parent_or_size[a] < 0) return a;
        return parent_or_size[a] = leader(parent_or_size[a]);
    }

    int size(int a) {
        assert(0 <= a && a < _n);
        return -parent_or_size[leader(a)];
    }

    std::vector<std::vector<int>> groups() {
        std::vector<int> leader_buf(_n), group_size(_n);
        for (int i = 0; i < _n; i++) {
            leader_buf[i] = leader(i);
            group_size[leader_buf[i]]++;
        }
        std::vector<std::vector<int>> result(_n);
        for (int i = 0; i < _n; i++) {
            result[i].reserve(group_size[i]);
        }
        for (int i = 0; i < _n; i++) {
            result[leader_buf[i]].push_back(i);
        }
        result.erase(
            std::remove_if(result.begin(), result.end(),
                           [&](const std::vector<int>& v) { return v.empty(); }),
            result.end());
        return result;
    }

  private:
    int _n;
    std::vector<int> parent_or_size;
};

}  // namespace atcoder

using namespace atcoder;

using ll = long long;
using ld = long double;
#define fi first
#define se second
#define pb push_back

int main(){
  int n,m,s,t;
  cin>>n>>m>>s>>t;
  s--;
  t--;
  
  int p[n];
  int copy[n];
  int newnumber[n];
  int oldnumber[n];
  int newp[n];
  
  for(int i=0;i<n;i++){
    cin>>p[i];
    copy[i]=p[i];
  }
  
  sort(copy,copy+n);
  reverse(copy,copy+n);
  
  map<int,int> rank;
  //rank[順位]=人数
  map<int,int> seen;
  
  for(int i=0;i<n;i++){
    rank[copy[i]]=i;
  }
  
  for(int i=0;i<n;i++){
    newnumber[i]=rank[p[i]]-seen[p[i]];
    oldnumber[newnumber[i]]=i;
    newp[newnumber[i]]=p[i];
    seen[p[i]]++;
  }
  
  /*for(int i=0;i<n;i++){
    cout<<newnumber[i]<<" ";
  }
  cout<<endl;*/
  
  s=newnumber[s],t=newnumber[t];
  
  
  vector<vector<int>> graph(n);
  for(int i=0;i<m;i++){
    int a,b;
    cin>>a>>b;
    a--;
    b--;
    a=newnumber[a],b=newnumber[b];
    graph[a].pb(b);
    graph[b].pb(a);
  }
  
  int dp[n];
  int dp2[n];
  dsu d(n);
  
  for(int i=0;i<n;i++){
    dp[i]=-1*1e9;
    dp2[i]=newp[i];
  }
  
  int now=-1*1e9;
  
  for(int i=0;i<n;i++){
    if(i==s){
      dp[i]=0;
    }
    if(graph[i].size()!=0){
      for(int next:graph[i]){
        if(next<i){
          int p=d.leader(next),q=d.leader(i);
          if(dp2[p]>newp[i]){
            dp[i]=max(dp[i],dp[p]+1);
          }
          else{
            dp[i]=max(dp[i],dp[p]);
          }
          d.merge(next,i);
          int r=d.leader(i);
          dp[r]=max(dp[r],dp[i]);
          dp2[r]=min({dp2[r],dp2[q],dp2[p],newp[i],newp[next]});
        }
      }
    }
  }
  
  int ans=0;
  for(int i=0;i<n;i++){
    ans=max(ans,dp[i]);
  }  
  cout<<ans<<endl;
}
0