Search found 9 matches
- Tue Aug 09, 2005 3:32 am
- Forum: Other words
- Topic: How to get a ACM ICPC Live Archive account?
- Replies: 0
- Views: 1280
How to get a ACM ICPC Live Archive account?
It seem cannot register now...
- Tue Jun 28, 2005 12:44 am
- Forum: Volume 106 (10600-10699)
- Topic: 10608 - Friends
- Replies: 75
- Views: 39172
- Sat Jun 18, 2005 5:31 am
- Forum: Volume 106 (10600-10699)
- Topic: 10608 - Friends
- Replies: 75
- Views: 39172
- Thu Jun 16, 2005 10:20 am
- Forum: Volume 106 (10600-10699)
- Topic: 10608 - Friends
- Replies: 75
- Views: 39172
10608 WA Why???
I'm getting W.A. Don't Know why .
I post the code
#include <cstdio>
#include <cstdlib>
int parent[30001];
int count[30001];
int main() {
int t, m, n, a, b, Max;
scanf("%d\n", &t);
for (int i=0;i<t;i++) {
scanf("%d %d\n", &m, &n);
for (int j=1;j<=m;j++) {
parent[j] = j;
count[j] = 0 ...
I post the code
#include <cstdio>
#include <cstdlib>
int parent[30001];
int count[30001];
int main() {
int t, m, n, a, b, Max;
scanf("%d\n", &t);
for (int i=0;i<t;i++) {
scanf("%d %d\n", &m, &n);
for (int j=1;j<=m;j++) {
parent[j] = j;
count[j] = 0 ...
- Sun Jun 12, 2005 5:47 am
- Forum: Other words
- Topic: I have a problem about code losting...
- Replies: 1
- Views: 1160
I have a problem about code losting...
Could the judge send me the code of one of my accepted problem?
Since I lost this code in my computer (UVA444 - Encoder and Decoder).
My account in 55807FF.
Thank you!
Since I lost this code in my computer (UVA444 - Encoder and Decoder).
My account in 55807FF.
Thank you!
- Wed Mar 02, 2005 11:26 am
- Forum: Volume 106 (10600-10699)
- Topic: 10673 - Play with Floor and Ceil
- Replies: 11
- Views: 8025
10673 - Play with Floor and Ceil
Sample Input:
3
5 2
40 2
24444 6
Sample Ouput :
1 1
1 1
0 6
why
input :40 2 --> output : 1 1
i think 40%2 == 0 and the output should be 0 2 not 1 1
anyone could help me?
3
5 2
40 2
24444 6
Sample Ouput :
1 1
1 1
0 6
why
input :40 2 --> output : 1 1
i think 40%2 == 0 and the output should be 0 2 not 1 1
anyone could help me?
- Wed Mar 02, 2005 7:47 am
- Forum: Volume 108 (10800-10899)
- Topic: 10819 - Trouble of 13-Dots
- Replies: 67
- Views: 61101
10819 - Trouble of 13-Dots
Should I sort the "price of the item" OR "favour index"?
But I think that those of them is not work....
How could do it?

But I think that those of them is not work....
How could do it?

- Sun Jan 23, 2005 8:38 am
- Forum: Algorithms
- Topic: Ackermann function again
- Replies: 1
- Views: 1226
- Fri Jan 21, 2005 6:52 pm
- Forum: C
- Topic: Question : The Ackermann function
- Replies: 1
- Views: 2388
Question : The Ackermann function
The Ackermann function is the simplest example of a well-defined Total Function which is Computable but not Primitive Recursive, providing a counterexample to the belief in the early 1900s that every Computable Function was also Primitive Recursive. It grows faster than an exponential function, or ...