結果
問題 | No.2627 Unnatural Pitch |
ユーザー | ゆにぽけ |
提出日時 | 2024-02-09 22:48:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,968 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 135,584 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-09-28 15:59:56 |
合計ジャッジ時間 | 3,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 57 ms
7,936 KB |
testcase_05 | AC | 58 ms
7,936 KB |
testcase_06 | AC | 50 ms
7,808 KB |
testcase_07 | AC | 33 ms
6,816 KB |
testcase_08 | AC | 44 ms
6,816 KB |
testcase_09 | AC | 54 ms
7,936 KB |
testcase_10 | AC | 52 ms
7,808 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <string> #include <cctype> #include <cstring> #include <cstdlib> #include <cassert> #include <cmath> #include <ctime> #include <iomanip> #include <numeric> #include <stack> #include <queue> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <bitset> #include <random> #include <utility> #include <functional> using namespace std; template<class T> struct BinaryIndexedTree { private: int N; vector<T> node; public: BinaryIndexedTree() : N(0) {} BinaryIndexedTree(int N) : N(N), node(N) {} void add(int pos,T x) { assert(0 <= pos && pos < N); pos++; while(pos <= N) { node[pos-1] += x; pos += pos & -pos; } } T sum(int l,int r) { assert(0 <= l && l <= N && r <= N); return sum(r) - sum(l); } T sum(int r) { T ret = 0; while(r > 0) { ret += node[r-1]; r -= r & -r; } return ret; } T sum() {return sum(N);} }; void Main() { int N,K; long long L,U; cin >> N >> K >> L >> U; vector<long long> A(N); for(int i = 0;i < N;i++) { cin >> A[i]; } sort(A.begin(),A.end()); vector<long long> S(N + 1); for(int i = 0;i < N;i++) { S[i + 1] = S[i] + A[i] / K; } long long ans = (long long)1e18; int ri = 0; BinaryIndexedTree<int> rcnt(K),lcnt(K); for(int i = 0;i < N;i++) { rcnt.add(A[i] % K,1); } for(int i = 0;i < N;i++) { while(ri < N && A[ri] <= A[i] + U - L) { rcnt.add(A[ri] % K,-1); ri++; } long long cur = 0; { //left cur += A[i] / K * i - S[i]; cur += i - lcnt.sum(0,A[i] % K + 1); } { //right cur += S[N] - S[ri]; cur -= (A[i] + U - L) / K * (N - ri); cur += N - ri - rcnt.sum(0,(A[i] + U - L) % K + 1); } lcnt.add(A[i] % K,1); ans = min(ans,cur); } cout << ans << "\n"; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; /* cin >> tt; */ while(tt--) Main(); }