結果
問題 | No.33 アメーバがたくさん |
ユーザー | kotatsugame |
提出日時 | 2020-02-27 22:34:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 543 bytes |
コンパイル時間 | 945 ms |
コンパイル使用メモリ | 87,564 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 16:02:49 |
合計ジャッジ時間 | 1,436 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,816 KB |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main() | ^~~~
ソースコード
#include<iostream> #include<map> #include<vector> #include<algorithm> using namespace std; int N; long D,T; main() { cin>>N>>D>>T; map<long,vector<long> >M; for(int i=0;i<N;i++) { long X;cin>>X; M[(X%D+D)%D].push_back(X); } long ans=0; for(map<long,vector<long> >::iterator it=M.begin();it!=M.end();it++) { vector<long>tmp=it->second; sort(tmp.begin(),tmp.end()); long pre=-2e18; for(long x:tmp) { long L=x-D*T,R=x+D*T; if(pre>=L) { ans-=(pre-L+D)/T; } ans+=2*T+1; pre=R; } } cout<<ans<<endl; }