結果
問題 | No.33 アメーバがたくさん |
ユーザー | ytft |
提出日時 | 2021-03-04 15:41:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,606 bytes |
コンパイル時間 | 1,433 ms |
コンパイル使用メモリ | 173,800 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 23:40:22 |
合計ジャッジ時間 | 2,674 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename type> void vector_sort(vector<type>& v,function<int(type)> fn=[](int a){return a;},int decided=0){ int range=v.size()-decided; if(range==0){ return; } int parent=(v.size()-decided-1)/2; int child=parent*2+1; int parent_depth=1; while(pow(2,parent_depth)-1<range){ parent_depth++; } parent_depth-=2; type temp; while(parent_depth>=0){ for(int i=pow(2,parent_depth)-1;i<pow(2,parent_depth+1)-1;i++){ if(i*2+1<range && v[i]<v[i*2+1]){ temp=v[i]; v[i]=v[i*2+1]; v[i*2+1]=temp; } if(i*2+2<range && v[i]<v[i*2+2]){ temp=v[i]; v[i]=v[i*2+2]; v[i*2+2]=temp; } } parent_depth--; } temp=v[0]; v[0]=v[range-1]; v[range-1]=temp; vector_sort(v,fn,decided+1); } int main(){ int N,D,T; cin>>N>>D>>T; vector<int> X(N); for(int i=0;i<N;i++){ cin>>X[i]; } vector_sort(X); vector<vector<int>> processed(D,vector<int>(0)); for(int i=0;i<N;i++){ processed[X[i]%D].push_back(X[i]/D); } long long ans=0; for(int i=0;i<D;i++){ if(processed[i].size()>0){ ans+=2*T+1; } for(int j=1;j<processed[i].size();j++){ if(processed[i][j]-processed[i][j-1]-1>2*T){ ans+=2*T+1; }else{ ans+=processed[i][j]-processed[i][j-1]; } } } cout<<ans<<endl; }