結果
問題 | No.826 連絡網 |
ユーザー | treeone |
提出日時 | 2019-05-03 21:29:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 991 bytes |
コンパイル時間 | 2,151 ms |
コンパイル使用メモリ | 204,272 KB |
実行使用メモリ | 18,760 KB |
最終ジャッジ日時 | 2024-06-10 06:26:52 |
合計ジャッジ時間 | 6,867 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:39:17: warning: 'j' may be used uninitialized [-Wmaybe-uninitialized] 39 | for(int j = 2 * j; j <= n; j += i){ | ^ main.cpp:39:17: note: 'j' was declared here 39 | for(int j = 2 * j; j <= n; j += i){ | ^
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define int long long using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e18; struct UF{ vector<int> par, sz; UF(){} UF(int n):par(n), sz(n, 1){ iota(par.begin(), par.end(), 0); } int find(int x){ if(x == par[x]) return x; return par[x] = find(par[x]); } void unite(int x, int y){ x = find(x); y = find(y); if(x == y) return; if(sz[x] < sz[y]) swap(x, y); sz[x] += sz[y]; par[y] = x; } bool same(int x, int y){ return find(x) == find(y); } }; signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n, p; cin >> n >> p; UF uf(n + 1); for(int i = 2; i <= n; i++){ if(uf.find(i) != i) continue; for(int j = 2 * j; j <= n; j += i){ uf.unite(i, j); } } cout << uf.sz[uf.find(p)] << endl; }