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

Обсуждение задачи 1403. Курьер

Страницы: 1 2 Следующая
ADMINS! test #4 WA, but it's right algorithm
Послано Alexander Prudaev 29 авг 2006 19:46
test it your self

after deleting this code, please
explain me why WA twoalias[animal]inbox[youknow]ru

#include <stdio.h>
#include <memory.h>


struct elt
{
    int c;
    short i;
};

elt T[100001];

int main()
{
    memset(T,0,sizeof(T));
    int N;
    scanf("%i",&N);
    short i;
    for (i=1;i<=N;i++)
    {
        int S,C;
        scanf("%i %i",&S,&C);
        if (C>T[S].c)
        {
            T[S].c=C;
            T[S].i=i;
        }
    }
    int j,ch=0;
    for (j=0;j<100001;j++) if (T[j].c>0) ch++;
    printf("%i\n",ch);
    for (j=0;j<100001;j++) if (T[j].c>0) printf("%i ",T[j].i);
    return 0;
}

Edited by author 29.08.2006 20:03
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF 29 авг 2006 20:37
I think you didn't understand the task right!
On the test
6
1 10
1 12
2 14
2 23
5 17
5 18
your program gives the answer
3
2 4 6
and the right answer is
4
3 4 6 5

Edited by author 30.08.2006 00:13
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Alexander Prudaev 29 авг 2006 21:26
but I think, right answer is
3
2 4 6

in your case 2-th (#4 (2, 23)) and
4-th (#5 (2, 17) orders is expired

if you right, then why you can't
output
5
1 3 4 5 6
or
6
1 2 3 4 5 6
?

please explain me, i can't understand
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF 29 авг 2006 23:52
Write your e-mail and I'll explain this task for you!)

Edited by author 29.08.2006 23:58

Edited by author 29.08.2006 23:59
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Alexander Prudaev 30 авг 2006 09:11
twoalias[animal]inbox[youknow]ru
and on Russian please.

Edited by author 30.08.2006 09:16
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF 30 авг 2006 19:28
I've sent the message to you! If you won't get it write here, please!)
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Giorgi Saghinadze (Tbilisi SU) 3 ноя 2006 19:09
I have the same problem. I can't understand meaning of this problem.
 help me please!!!
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF [USTU] 4 ноя 2006 17:53
Write your mail!

Edited by author 04.11.2006 17:53
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Giorgi Saghinadze (Tbilisi SU) 6 ноя 2006 14:34
gio-saghinadze@mail.ru

now I have WA 9:(
I used heap
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF [USTU] 6 ноя 2006 17:22
I've sent a message!)
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Todor Tsonkov 3 дек 2006 01:49
Can you explain it to all of us ?
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF [USTU] 3 дек 2006 14:39
I think this test is very useful for understanding this task
6
1 10
1 12
2 14
2 23
5 17
5 18
Answer
4
3 4 6 5



Re: ADMINS! test #4 WA, but it's right algorithm
Послано Anton [SUrSU] 3 дек 2006 15:40
I'm understand problem, but how using dp to solve task?
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF [USTU] 3 дек 2006 16:43
I solved it without using DP!)
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Neizvestnii 22 июн 2007 22:50
AlexF [USTU] писал(a) 3 декабря 2006 16:43
I solved it without using DP!)
How?????
Re: ADMINS! test #4 WA, but it's right algorithm
Послано AlexF [USTU] 23 июн 2007 00:22
Post your mail
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Neizvestnii 23 июн 2007 16:21
acmrulit@rambler.ru
Re: ADMINS! test #4 WA, but it's right algorithm
Послано [WA] 11 сен 2007 21:48
Please, explain! Why the answer to this test is:
4
3 4 6 5
Re: ADMINS! test #4 WA, but it's right algorithm
Послано Loky_Yuri [USTU] 12 сен 2007 14:20
Come on! It's easy to understand it.
For example this test
3
1 9
2 10
2 11
The answer is
2
2 3.
I can explain it. The deliver time is not exactly one day. So the second container (in my example) could be given in the first day and in the second day. So if the deliver time is N, it means that container could be given in 1, 2 ,..., N day (in any day, but not in the Nth day exactly). Hope it's clear to understand.
Re: ADMINS! test #4 WA, but it's right algorithm
Послано [WA] 12 сен 2007 15:22
Thanks

Edited by author 12.09.2007 15:22
Страницы: 1 2 Следующая