ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1403. Courier

Show all messages Hide all messages

ADMINS! test #4 WA, but it's right algorithm Alexander Prudaev 29 Aug 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
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 Aug 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
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 Aug 2006 09:11
twoalias[animal]inbox[youknow]ru
and on Russian please.

Edited by author 30.08.2006 09:16
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 Nov 2006 19:09
I have the same problem. I can't understand meaning of this problem.
 help me please!!!
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 Nov 2006 14:34
gio-saghinadze@mail.ru

now I have WA 9:(
I used heap
I've sent a message!)
Can you explain it to all of us ?
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



I'm understand problem, but how using dp to solve task?
I solved it without using DP!)
AlexF [USTU] wrote 3 December 2006 16:43
I solved it without using DP!)
How?????
Post your mail
acmrulit@rambler.ru
i dont understand, how to write program even after advices, can you explain it to me? rpmain@tut.by
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 Sep 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.
Thanks

Edited by author 12.09.2007 15:22
Re: ADMINS! test #4 WA, but it's right algorithm Denis Koshman 28 Jul 2008 08:31
That's a question to authors why they wrote it that way :) Delivery time usually means something strict - not earlier, not later. What they meant is time due or a deadline.
Re: ADMINS! test #4 WA, but it's right algorithm lian lian (k421668239@gmail.com) 11 Dec 2008 19:59
6
1 10
1 12
2 14
2 23
5 17
5 18
---------------------
result:  3 4 5 6,   Is right answer?
Re: ADMINS! test #4 WA, but it's right algorithm Phan Hoài Nam - Đại học Ngoại ngữ Tin Học TP.HCM 17 Feb 2009 11:10
Why 3 4 6 5 ?
The delivery time of 3 4 6 = 2 + 2 + 5 = 9
so the delivery time of 5 is expired !
It's right ?
Phan Hoài Nam - Đại học Ngoại ngữ Tin Học TP.HCM wrote 17 February 2009 11:10
Why 3 4 6 5 ?
The delivery time of 3 4 6 = 2 + 2 + 5 = 9
so the delivery time of 5 is expired !
It's right ?
NO!
2, 2, 5 isn't a delivery time to client
it max time to delivery
so if you want deliver goods to client with time 2
you must go to him in first day or in second day and delvery take 1 day!
4
3 4 5 6

is this wrong answer??