結果
問題 | No.1972 Modulo Set |
ユーザー | pengin_2000 |
提出日時 | 2022-07-06 11:57:31 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,910 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 31,232 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 06:22:19 |
合計ジャッジ時間 | 3,012 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 6 ms
6,940 KB |
testcase_04 | AC | 9 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 18 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 25 ms
6,940 KB |
testcase_16 | AC | 25 ms
6,940 KB |
testcase_17 | AC | 9 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 19 ms
6,940 KB |
testcase_20 | AC | 24 ms
6,940 KB |
testcase_21 | AC | 12 ms
6,944 KB |
testcase_22 | AC | 16 ms
6,944 KB |
testcase_23 | AC | 29 ms
6,944 KB |
testcase_24 | AC | 11 ms
6,940 KB |
testcase_25 | AC | 17 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | AC | 30 ms
6,944 KB |
testcase_28 | AC | 11 ms
6,940 KB |
testcase_29 | AC | 16 ms
6,944 KB |
testcase_30 | AC | 22 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 20 ms
6,944 KB |
testcase_33 | AC | 35 ms
6,944 KB |
testcase_34 | AC | 34 ms
6,940 KB |
testcase_35 | AC | 34 ms
6,944 KB |
testcase_36 | AC | 33 ms
6,940 KB |
ソースコード
#include<stdio.h> long long int h[100005], l; int comp_h(long long int a, long long int b) { if (h[a] > h[b]) return 1; else return -1; } void swap_h(long long int a, long long int b) { long long int f = h[a]; h[a] = h[b]; h[b] = f; return; } void push(long long int ne) { h[l] = ne; long long int p = l; l++; for (; p > 0; p = (p - 1) / 2) if (comp_h((p - 1) / 2, p) > 0) swap_h((p - 1) / 2, p); return; } long long int pop() { l--; swap_h(0, l); long long int p = 0; for (;;) { if (2 * p + 2 < l) { if (comp_h(2 * p + 1, 2 * p + 2) > 0) { if (comp_h(p, 2 * p + 2) > 0) swap_h(p, 2 * p + 2); p = 2 * p + 2; } else { if (comp_h(p, 2 * p + 1) > 0) swap_h(p, 2 * p + 1); p = 2 * p + 1; } } else if (2 * p + 1 < l) { if (comp_h(p, 2 * p + 1) > 0) swap_h(p, 2 * p + 1); p = 2 * p + 1; } else break; } return h[l]; } long long int a[100005]; long long int cnt[100005]; int main() { long long int n, m; scanf("%lld %lld", &n, &m); long long int i, j; for (i = 0; i < n; i++) scanf("%lld", &a[i]); if (m == 1) { printf("1\n"); return 0; } for (i = 0; i < n; i++) a[i] %= m; l = 0; for (i = 0; i < n; i++) push(a[i]); for (i = 0; i < n; i++) a[i] = pop(); cnt[0] = 1; for (i = 1; i < n; i++) { if (a[i] == a[i - 1]) cnt[i] = cnt[i - 1] + 1; else cnt[i] = 1; } long long int ans = 0; i = 0; a[n] = -1; if (a[i] == 0) { ans++; while (a[i] == 0) i++; } for (j = n - 1; i <= j;) { while (a[i] == a[i + 1]) i++; if (i > j) break; if (a[i] + a[j] < m) { ans += cnt[i]; i++; } else if (a[i] + a[j] > m) { ans += cnt[j]; while (a[j - 1] == a[j]) j--; j--; } else { if (cnt[i] > cnt[j]) ans += cnt[i]; else ans += cnt[j]; i++; while (a[j - 1] == a[j]) j--; j--; } } printf("%lld\n", ans); return 0; }