結果
問題 | No.33 アメーバがたくさん |
ユーザー | ciel |
提出日時 | 2015-10-29 02:58:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,267 bytes |
コンパイル時間 | 834 ms |
コンパイル使用メモリ | 80,472 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 10:29:43 |
合計ジャッジ時間 | 1,186 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:40:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 40 | scanf("%lld%lld%lld",&n,&d,&t); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:42:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%lld",&x); | ~~~~~^~~~~~~~~~~
ソースコード
#include <iostream> #include <unordered_map> #include <vector> #include <algorithm> using namespace std; typedef pair<long long,long long> pll; long long checkio(const vector<pll> &v){ long long result=0; long long l,r; vector<pll> se; for(auto &e:v){ l=e.first,r=e.second; auto right=lower_bound(se.begin(),se.end(),make_pair(l,0LL)); //l <= se[right_idx].first size_t right_idx=right-se.begin(); if(right_idx!=0){ size_t left_idx=right_idx-1; if(l<=se[left_idx].second+1){ // overlap with left l=se[left_idx].first; r=max(r,se[left_idx].second); result-=se[left_idx].second-se[left_idx].first+1; se.erase(se.begin()+left_idx); right_idx--; } } while(right_idx<se.size() && se[right_idx].first<=r){ // overlap with right r=max(r,se[right_idx].second); result-=se[right_idx].second-se[right_idx].first+1; se.erase(se.begin()+right_idx); } result+=r-l+1; se.insert(se.begin()+right_idx,make_pair(l,r)); } return result; } int main(){ unordered_map<long long,vector<pll>> dic; long long n,d,t,x,m; scanf("%lld%lld%lld",&n,&d,&t); for(int i=0;i<n;i++){ scanf("%lld",&x); m=(x%d+d)%d; dic[m].emplace_back((x-m)/d-t,(x-m)/d+t); } x=0; for(auto &e:dic)x+=checkio(e.second); printf("%lld\n",x); }