Search found 4 matches

by WillWin
Wed Aug 20, 2008 9:58 am
Forum: Bugs and suggestions
Topic: 193 - Graph Coloring(Solved)
Replies: 3
Views: 3025

Re: 193 - Graph Coloring

After my friend debugged , I'm sorry that I forgot to clean memory (or reset state) :cry: .

I think UVa has more good quality than PKU. :D
by WillWin
Mon Aug 18, 2008 9:48 pm
Forum: Bugs and suggestions
Topic: 193 - Graph Coloring(Solved)
Replies: 3
Views: 3025

193 - Graph Coloring(Solved)

This is my C code

Code: Select all

remove after AC
But I got WA many times and did't know where was error
I find something weird that
I submit in PKU http://acm.pku.edu.cn/JudgeOnline/ and it got accepted
PKU Prob.ID:1419
so I think judge doesn't completely conclude all possible answer.
by WillWin
Sat Aug 02, 2008 5:15 am
Forum: Bugs and suggestions
Topic: Slow loading time and km long judge queue!
Replies: 5
Views: 3491

Re: Slow loading time and km long judge queue!

The same status as above ... :oops:
by WillWin
Fri Aug 01, 2008 10:38 am
Forum: Volume 1 (100-199)
Topic: 138 - Street Numbers
Replies: 93
Views: 21471

Re: problem no 138--help pls


#include <iostream>
using namespace std;
int main ()
{
int l1 [10] = {6, 35, 204, 1189, 6930, 256, 7742, 11707, 19813, 25162};
int l2 [10] = {8 ,49, 288, 1681, 9800, 131072, 131528, 132113, 134033, 135816};
for ( int i = 0; i < 10; i++)
{
printf ("%10d%10d\n", l1[i], l2[i]);
}
return 0 ...

Go to advanced search