ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1617. Ползуны

please tell me test № 5
Послано Yan_Kurganov (Kovrov STA) 9 ноя 2010 02:44
why the wrong answer? please tell me test № 5. sorry for bad english.

Edited by author 09.11.2010 02:45
Re: please tell me test № 5
Послано Yan_Kurganov (Kovrov STA) 9 ноя 2010 03:37
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    int mass[160]={0};
    int n,i,kolvo=0,xz=1;
    cin>>n;
    for (i = 0; i < n; i++) {
        cin>>mass[i];
    }
    sort(&mass[0],&mass[n]);

    for (i = 1; i < n; i++) {
        if (mass[i]==mass[i-1]) {
            xz++;
        }
        if (mass[i]!=mass[i+1]) {
            if (xz/4>=1) {
                kolvo+=xz/4.0;
                xz=1;
            }
        }
    }
    cout<<kolvo;
return 0;
}
Re: please tell me test № 5
Послано DominatoR 15 ноя 2010 11:04
You can use not only the wheels of the same size