結果
問題 | No.1746 Sqrt Integer Segments |
ユーザー | startcpp |
提出日時 | 2021-11-18 00:43:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 666 ms / 2,000 ms |
コード長 | 1,669 bytes |
コンパイル時間 | 991 ms |
コンパイル使用メモリ | 88,500 KB |
実行使用メモリ | 80,292 KB |
最終ジャッジ日時 | 2024-09-13 09:24:00 |
合計ジャッジ時間 | 17,675 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 400 ms
67,236 KB |
testcase_01 | AC | 399 ms
67,104 KB |
testcase_02 | AC | 538 ms
76,564 KB |
testcase_03 | AC | 468 ms
72,476 KB |
testcase_04 | AC | 495 ms
74,144 KB |
testcase_05 | AC | 606 ms
80,292 KB |
testcase_06 | AC | 448 ms
71,328 KB |
testcase_07 | AC | 415 ms
68,512 KB |
testcase_08 | AC | 556 ms
76,324 KB |
testcase_09 | AC | 618 ms
80,132 KB |
testcase_10 | AC | 457 ms
70,944 KB |
testcase_11 | AC | 618 ms
78,856 KB |
testcase_12 | AC | 638 ms
80,292 KB |
testcase_13 | AC | 656 ms
80,284 KB |
testcase_14 | AC | 666 ms
80,288 KB |
testcase_15 | AC | 660 ms
80,160 KB |
testcase_16 | AC | 658 ms
80,288 KB |
testcase_17 | AC | 557 ms
75,164 KB |
testcase_18 | AC | 426 ms
67,872 KB |
testcase_19 | AC | 433 ms
67,808 KB |
testcase_20 | AC | 436 ms
68,004 KB |
testcase_21 | AC | 428 ms
67,464 KB |
testcase_22 | AC | 423 ms
67,376 KB |
testcase_23 | AC | 420 ms
67,356 KB |
testcase_24 | AC | 440 ms
67,748 KB |
testcase_25 | AC | 439 ms
67,828 KB |
testcase_26 | AC | 438 ms
67,868 KB |
testcase_27 | AC | 447 ms
67,748 KB |
testcase_28 | AC | 435 ms
67,868 KB |
testcase_29 | AC | 438 ms
67,744 KB |
ソースコード
//24 -> 2^3 * 3 -> 2 * 3のように置き換えてOK。 //各素因数の個数 mod 2の累積和を考えると、これをキーにして数えたいが、2 3 5 7 11 …のようなケースで膨らむ。 //集合をハッシュで管理できないか? -> ゾブリストハッシュ! //今回のように、2回同じ要素が来ると元に戻る性質のときに使えるハッシュ。 //unsigned long longで乱数生成すれば、衝突の心配も少ない。 #include <cstdio> #include <random> #include <map> #define rep(i, n) for(i = 0; i < n; i++) using namespace std; const int MAX = 1000000; int n; int a[200000]; bool isPrime[MAX + 1]; vector<int> ps[MAX + 1]; unsigned long long Rnd[MAX + 1]; mt19937_64 mt(2521); void init() { for (int i = 2; i <= MAX; i++) isPrime[i] = true; for (int i = 2; i <= MAX; i++) { if (isPrime[i]) { for (int j = i * 2; j <= MAX; j += i) { isPrime[j] = false; int tmp = j; int cnt = 0; while (tmp % i == 0) { tmp /= i; cnt++; } if (cnt % 2 == 1) { ps[j].push_back(i); } } ps[i].push_back(i); } } for (int i = 0; i <= MAX; i++) { Rnd[i] = mt(); } } map<unsigned long long, int> cnts; signed main() { int i, j; init(); scanf("%d", &n); rep(i, n) scanf("%d", a + i); unsigned long long zhash = 0; cnts[zhash]++; rep(i, n) { rep(j, ps[a[i]].size()) { int p = ps[a[i]][j]; zhash ^= Rnd[p]; } cnts[zhash]++; } long long ans = 0; for (map<unsigned long long, int>::iterator it = cnts.begin(); it != cnts.end(); it++) { int cnt = it->second; ans += (long long)cnt * (cnt - 1) / 2; } printf("%lld\n", ans); return 0; }