Search found 20 matches
- Mon Feb 11, 2013 5:26 pm
- Forum: Volume 5 (500-599)
- Topic: 567 - Risk
- Replies: 46
- Views: 26103
SubmissionErr 567 Risk
I keep getting "SubmissionErr". What does that mean ? What should I do ?
- Mon Jan 21, 2013 5:16 am
- Forum: Volume 118 (11800-11899)
- Topic: 11858 - Frosh Week
- Replies: 20
- Views: 7882
Re: WA 11858 - Frosh Week
Thanks brianfry713.
I finally solved this problem by using merge sort.
I think this problem can also be solved by using segment trees. But I don't know how to do that.
First count the number of inversion in the left child.
Then count the number of inversion in the right child.
But then how do you ...
I finally solved this problem by using merge sort.
I think this problem can also be solved by using segment trees. But I don't know how to do that.
First count the number of inversion in the left child.
Then count the number of inversion in the right child.
But then how do you ...
- Fri Jan 18, 2013 6:42 pm
- Forum: Volume 118 (11800-11899)
- Topic: 11858 - Frosh Week
- Replies: 20
- Views: 7882
WA 11858 - Frosh Week
Can anyone give me some criticial test cases ? I keep getting WA
Code: Select all
Code removed
- Sun Jan 06, 2013 6:12 am
- Forum: Volume 116 (11600-11699)
- Topic: 11631 - Dark roads
- Replies: 11
- Views: 7409
Re: 11631 - Dark roads TLE
Thanks very much. Got AC 

- Thu Jan 03, 2013 5:44 am
- Forum: Volume 7 (700-799)
- Topic: 727 - Equation
- Replies: 156
- Views: 57518
Re: 727 Equation TLE
Thanks 

- Wed Jan 02, 2013 6:11 am
- Forum: Volume 7 (700-799)
- Topic: 727 - Equation
- Replies: 156
- Views: 57518
Re: 727 Equation TLE
I think the error comes from how my program does input.
How do you recognize a blank line from the input ?
How do you recognize a blank line from the input ?
- Tue Jan 01, 2013 8:22 pm
- Forum: Volume 7 (700-799)
- Topic: 727 - Equation
- Replies: 156
- Views: 57518
727 Equation TLE
My program passes all the test cases posted in the this forum.
However, I keep getting TLE
Can anyone give me some suggestion how to speed this up ?
However, I keep getting TLE
Can anyone give me some suggestion how to speed this up ?
Code: Select all
Code Removed
Got Ac :P
- Sat Dec 29, 2012 12:45 pm
- Forum: Volume 116 (11600-11699)
- Topic: 11631 - Dark roads
- Replies: 11
- Views: 7409
11631 - Dark roads
I kept getting TLE on this problem.
Any suggestion to speed up my program ?
I used Kruskal algorithm.
Any suggestion to speed up my program ?
I used Kruskal algorithm.
Code: Select all
Code Removed.
Got AC
- Sat Dec 15, 2012 2:09 am
- Forum: Volume 104 (10400-10499)
- Topic: 10473 - Simple Base Conversion
- Replies: 46
- Views: 21522
Re: 10473 - Simple Base Conversion Question
@brianfry713: Thanks very much
- Fri Dec 14, 2012 5:21 pm
- Forum: Volume 104 (10400-10499)
- Topic: 10473 - Simple Base Conversion
- Replies: 46
- Views: 21522
10473 - Simple Base Conversion Question
Why does Uvatoolkit answer 1867505754 for the input "0x56F4FE05A" ?
Shouldn't the answer be 23342342234 ?
By the way, what is wrong with my code ? I keep getting WA
Shouldn't the answer be 23342342234 ?
By the way, what is wrong with my code ? I keep getting WA
Code: Select all
Code removed.
Got AC :D
- Mon Dec 03, 2012 5:15 am
- Forum: Volume 124 (12400-12499)
- Topic: 12412 - A Typical Homework (a.k.a Shi Xiong Bang Bang Mang)
- Replies: 6
- Views: 3041
Re: 12412 WA A Typical Homework (a.k.a Shi Xiong Bang Bang M
I removed "public" but I still got WA 

- Mon Dec 03, 2012 4:30 am
- Forum: Volume 1 (100-199)
- Topic: 190 - Circle Through Three Points
- Replies: 126
- Views: 37584
Re: 190 WA Help plz
Thank you so much.
You have helped me AC so many problems
You have helped me AC so many problems
- Mon Nov 26, 2012 6:39 am
- Forum: Volume 1 (100-199)
- Topic: 190 - Circle Through Three Points
- Replies: 126
- Views: 37584
190 WA Help plz
I have tried all the test cases posted in this forum, but i still got WA.
Help me please. I feel so frustrated
Help me please. I feel so frustrated
Code: Select all
Code Removed
AC :P
- Sun Nov 25, 2012 11:42 am
- Forum: Volume 124 (12400-12499)
- Topic: 12412 - A Typical Homework (a.k.a Shi Xiong Bang Bang Mang)
- Replies: 6
- Views: 3041
12412 - A Typical Homework (a.k.a Shi Xiong Bang Bang Mang)
Can someone help me figure out what is wrong with my code ?
This problem seems easy but long. I spent like almost 3 hours to make it. However, I kept on getting WA :(
Help me please.
import java.util.Scanner;
import java.text.*;
class Student {
long CID;
String SID;
String name;
int Chinese ...
This problem seems easy but long. I spent like almost 3 hours to make it. However, I kept on getting WA :(
Help me please.
import java.util.Scanner;
import java.text.*;
class Student {
long CID;
String SID;
String name;
int Chinese ...
- Fri Nov 16, 2012 5:50 am
- Forum: Volume 102 (10200-10299)
- Topic: 10285 - Longest Run on a Snowboard
- Replies: 10
- Views: 9470
Re: WA 10285 - Longest Run on a Snowboard
Thank you very much.