結果
問題 | No.1059 素敵な集合 |
ユーザー | yurujirou |
提出日時 | 2021-09-22 19:53:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 1,569 bytes |
コンパイル時間 | 1,367 ms |
コンパイル使用メモリ | 89,912 KB |
実行使用メモリ | 8,832 KB |
最終ジャッジ日時 | 2024-07-05 09:19:48 |
合計ジャッジ時間 | 2,040 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 14 ms
5,376 KB |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 9 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 9 ms
5,376 KB |
testcase_11 | AC | 7 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 19 ms
5,632 KB |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | AC | 8 ms
5,376 KB |
testcase_18 | AC | 26 ms
8,832 KB |
testcase_19 | AC | 17 ms
5,376 KB |
testcase_20 | AC | 17 ms
5,632 KB |
testcase_21 | AC | 22 ms
6,016 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> #include <iostream> #include <sstream> #include <algorithm> #include <stack> #include <vector> #include <queue> #include <map> #include <set> #include <deque> #include <functional> #define _USE_MATH_DEFINES #include <math.h> #include <complex> using namespace std; //#include <atcoder/all> //using namespace atcoder; #define REP(i,n) for(int i = 0; i < (int)n; i++) #define RREP(i,n) for(int i = (int)n-1; i >= 0; i--) #define LREP(i,n) for(LL i = 0; i < (LL)n; i++) #define Vi vector<int> #define Vl vector<long long> #define LP pair<long long ,long long> #define P pair<int, int> #define T3 tuple<LL, LL, LL> #define T4 tuple<LL, LL, LL, LL> #define INF 1000000007 #define SIZE 300010 #define MOD 1000000007 typedef long long LL; int L, R; int parent[SIZE], s[SIZE]; void init() { for (int i = L; i <= R; i++) { parent[i] = i; s[i] = 1; } } int par(int a) { if (parent[a] == a) return a; else return parent[a] = par(parent[a]); } int size(int a) { int pa = par(a); return s[pa]; } void merge(int a, int b) { int pa = par(a), pb = par(b); if (pa != pb) { if (size(pa) > size(pb)) swap(pa, pb); parent[pa] = pb; s[pb] += s[pa]; } } bool same(int a, int b) { int pa = par(a), pb = par(b); if (pa == pb) return true; else return false; } int main() { cin >> L >> R; init(); for (int i = L; i <= R; i++) { for (int j = i; j <= R; j += i) { merge(i, j); } } set<int> S; for (int i = L; i <= R; i++) { S.insert(par(i)); } cout << S.size() - 1 << endl; }