結果

問題 No.1382 Travel in Mitaru city
ユーザー 蜜蜂蜜蜂
提出日時 2021-02-04 21:58:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 3,252 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 184,260 KB
実行使用メモリ 20,200 KB
最終ジャッジ日時 2023-09-17 06:30:06
合計ジャッジ時間 12,791 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 WA -
testcase_06 AC 62 ms
5,856 KB
testcase_07 AC 50 ms
5,464 KB
testcase_08 AC 30 ms
5,060 KB
testcase_09 AC 69 ms
6,104 KB
testcase_10 AC 64 ms
5,872 KB
testcase_11 WA -
testcase_12 AC 152 ms
13,112 KB
testcase_13 AC 156 ms
12,992 KB
testcase_14 AC 147 ms
12,836 KB
testcase_15 AC 146 ms
13,132 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 253 ms
19,404 KB
testcase_19 WA -
testcase_20 AC 250 ms
19,408 KB
testcase_21 AC 252 ms
19,444 KB
testcase_22 AC 252 ms
19,380 KB
testcase_23 AC 249 ms
19,464 KB
testcase_24 AC 246 ms
19,472 KB
testcase_25 AC 251 ms
19,448 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 197 ms
17,252 KB
testcase_52 AC 242 ms
20,200 KB
testcase_53 AC 46 ms
7,000 KB
testcase_54 AC 98 ms
10,776 KB
testcase_55 AC 223 ms
19,092 KB
testcase_56 AC 66 ms
8,736 KB
testcase_57 AC 142 ms
13,904 KB
testcase_58 AC 21 ms
5,128 KB
testcase_59 AC 65 ms
8,240 KB
testcase_60 AC 227 ms
18,680 KB
testcase_61 WA -
testcase_62 AC 2 ms
4,380 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
  
  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]];
    seen[p[i]]++;
  }
  
  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];
  dsu d(n);
  
  for(int i=0;i<n;i++){
    dp[i]=-1*1e9;
  }
  
  int now=-1*1e9;
  
  for(int i=0;i<n;i++){
    if(i==s){
      dp[i]=0;
    }
    if(graph[i].size()!=0){
      for(int neighbor:graph[i]){
        if(neighbor<i){
          d.merge(neighbor,i);
        }
      }
      for(int neighbor:graph[i]){
        if(neighbor<i){
          if(d.same(neighbor,s)==true){
            dp[i]=max(dp[i],now+1);
          }
        }
        else{
          if(d.same(neighbor,s)==true){
            dp[i]=max(dp[i],now);
          }
        }
      }
    }
    now=max(now,dp[i]);
  }
  
  int ans=0;
  for(int i=0;i<n;i++){
    ans=max(ans,dp[i]);
  }
  cout<<ans<<endl;
}
0