結果
問題 | No.826 連絡網 |
ユーザー | face4 |
提出日時 | 2019-05-03 21:30:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,487 bytes |
コンパイル時間 | 591 ms |
コンパイル使用メモリ | 73,632 KB |
実行使用メモリ | 16,412 KB |
最終ジャッジ日時 | 2024-06-10 06:27:27 |
合計ジャッジ時間 | 14,732 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
10,908 KB |
testcase_01 | AC | 10 ms
5,404 KB |
testcase_02 | AC | 117 ms
5,528 KB |
testcase_03 | AC | 1,373 ms
5,404 KB |
testcase_04 | AC | 1,809 ms
5,400 KB |
testcase_05 | AC | 713 ms
5,532 KB |
testcase_06 | AC | 727 ms
5,404 KB |
testcase_07 | AC | 1,606 ms
5,376 KB |
testcase_08 | AC | 825 ms
5,376 KB |
testcase_09 | AC | 1,731 ms
5,404 KB |
testcase_10 | AC | 405 ms
5,532 KB |
testcase_11 | AC | 1,185 ms
5,376 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include<iostream> #include<vector> using namespace std; class DisjointSet{ public: vector<int> rank, p; DisjointSet(){} DisjointSet(int size){ rank.resize(size, 0); p.resize(size, 0); for(int i = 0; i < size; i++) makeSet(i); } void makeSet(int x){ p[x] = x; rank[x] = 0; } bool same(int x, int y){ return findSet(x) == findSet(y); } void unite(int x, int y){ link(findSet(x), findSet(y)); } void link(int x, int y){ if(rank[x] > rank[y]){ p[y] = x; }else{ p[x] = y; if(rank[x] == rank[y]){ rank[y]++; } } } int findSet(int x){ if(x != p[x]){ // path compression p[x] = findSet(p[x]); } return p[x]; } }; int main(){ int n, p; cin >> n >> p; vector<int> prime; bool nonp[1000001] = {}; for(int i = 2; i < 1000001; i++){ if(nonp[i]) continue; prime.push_back(i); for(int j = i+i; j < 1000001; j+= i) nonp[j] = true; } int pnum = prime.size(); DisjointSet uf(n + pnum); // ここが重いかもしれない for(int i = 1; i <= n; i++){ for(int j = 0; j < pnum; j++){ if(i%prime[j] == 0) uf.unite(i-1, n+j); } } int ans = 0; for(int i = 0; i < n; i++) if(uf.same(p-1,i)) ans++; cout << ans << endl; return 0; }