結果
問題 | No.33 アメーバがたくさん |
ユーザー | latte0119 |
提出日時 | 2016-02-26 02:25:54 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,160 bytes |
コンパイル時間 | 1,595 ms |
コンパイル使用メモリ | 172,976 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 10:32:53 |
合計ジャッジ時間 | 2,200 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h>using namespace std;#define int long longtypedef long long ll;typedef pair<int,int>pint;typedef vector<int>vint;typedef vector<pint>vpint;#define pb push_back#define mp make_pair#define fi first#define se second#define ln <<endl#define all(v) (v).begin(),(v).end()#define rep(i,n) for(int i=0;i<(n);i++)#define reps(i,f,n) for(int i=(f);i<(n);i++)#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)template<class T,class U>void chmin(T &t,U f){if(t>f)t=f;}template<class T,class U>void chmax(T &t,U f){if(t<f)t=f;}int N,D,T;int X[100];int l[100],r[100];signed main(){cin>>N>>D>>T;rep(i,N)cin>>X[i];map<int,vint>M;rep(i,N)M[(X[i]+D*1000000000)%D].pb(X[i]);int ans=0;for(auto it:M){vint &v=it.se;sort(all(v));rep(i,v.size()){v[i]-=it.fi;v[i]/=D;l[i]=v[i]-T;r[i]=v[i]+T;}int pre=-1145141919810ll;rep(i,v.size()){chmax(pre,l[i]);ans+=r[i]-l[i]+1;pre=r[i]+1;}}cout<<ans<<endl;return 0;}