結果
問題 | No.2627 Unnatural Pitch |
ユーザー | kmjp |
提出日時 | 2024-02-10 00:27:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,595 bytes |
コンパイル時間 | 2,200 ms |
コンパイル使用メモリ | 206,580 KB |
実行使用メモリ | 9,684 KB |
最終ジャッジ日時 | 2024-09-28 16:44:37 |
合計ジャッジ時間 | 3,935 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 4 ms
8,288 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 32 ms
9,476 KB |
testcase_05 | AC | 33 ms
9,648 KB |
testcase_06 | WA | - |
testcase_07 | AC | 27 ms
6,820 KB |
testcase_08 | AC | 38 ms
6,820 KB |
testcase_09 | WA | - |
testcase_10 | AC | 35 ms
9,604 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 46 ms
7,308 KB |
testcase_17 | AC | 48 ms
9,592 KB |
testcase_18 | AC | 46 ms
6,824 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 22 ms
9,204 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- ll N,K; ll L,U; ll A[202020]; ll sum[604040]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>K>>L>>U; ll D=U-L; FOR(i,N) cin>>A[i]; sort(A,A+N); L=0; for(i=50;i>=0;i--) { ll TL=L+(1LL<<i); ll L1=lower_bound(A,A+N,TL)-A; ll R1=A+N-lower_bound(A,A+N,TL+D+1); if(L1<=R1) L=TL; } ll SL=max(0LL,L-K); FOR(i,N) { if(A[i]<=SL) { ll pat=(SL-A[i]+K-1)/K; sum[0]+=pat; int dif=K-(SL-A[i])%K; sum[dif]++; sum[dif+K]++; } else if(A[i]<=SL+D) { sum[min(2*K+2,A[i]-SL+1)]++; sum[min(2*K+2,A[i]-SL+1+K)]++; } else { int d=(A[i]-(SL+D))%K; d++; sum[0]+=(A[i]-(SL+D)+K-1)/K; sum[d]--; if((A[i]-(SL+D)+K-1)/K>1) sum[d+K]--; } } ll mi=1LL<<60; FOR(i,2*K+1) { if(i) sum[i]+=sum[i-1]; mi=min(mi,sum[i]); } cout<<mi<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }