Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- #include <algorithm>
- using namespace std;
- int main() {
- int liczbaLudzi;
- cin>>liczbaLudzi;
- vector<int> ludzie;
- for(int i=0;i<liczbaLudzi;i++)
- {
- int val;
- cin>>val;
- ludzie.push_back(val);
- }
- sort(ludzie.begin(),ludzie.end());
- int ileRazyTrzebaZrobicAlgorytmy=0;
- while(!ludzie.empty())
- {
- while(ludzie[0]!=ludzie[1])
- {
- if(ludzie[0]<ludzie[1])
- {
- ludzie[0]++;
- ileRazyTrzebaZrobicAlgorytmy++;
- }
- if(ludzie[0]>ludzie[1])
- {
- ludzie[1]++;
- ileRazyTrzebaZrobicAlgorytmy++;
- }
- }
- if(ludzie[0]==ludzie[1])
- {
- ludzie.erase(ludzie.begin());
- ludzie.erase(ludzie.begin());
- }
- }
- cout<<"Trzeba zrobic "<<ileRazyTrzebaZrobicAlgorytmy<<" algorytmow ";
- std::cout << "Hello, World!" << std::endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement