Search found 4 matches

by luzi82
Fri Nov 08, 2002 10:49 am
Forum: Volume 1 (100-199)
Topic: 112 - Tree Summing
Replies: 137
Views: 32529

if you find 112 is difficult............

think of the negative input
by luzi82
Thu Oct 31, 2002 7:31 pm
Forum: Volume 1 (100-199)
Topic: 175 - Keywords
Replies: 13
Views: 5574

oh i am thinking.........
in the sample

P: 1 art rock metaphor concepts

is it mean that there exist 2 pair

art -- rock
metaphor -- concepts

the result match only when one pair above is found in the title, separated by no more than 1 word?
by luzi82
Thu Oct 31, 2002 7:59 am
Forum: Volume 1 (100-199)
Topic: 175 - Keywords
Replies: 13
Views: 5574

175 WA crazy

this code is right in sample but WA
please tell me a fail example if you find any error

[cpp]
#include <iostream.h>
#include <stdio.h>

main() {
char profiles[50][1024];
int profiles_id[50][1024];
int profiles_gap[50];
int profiles_max = 0;
int profiles_now_id = 0;
char title[255][256];
int ...
by luzi82
Wed Oct 16, 2002 3:25 pm
Forum: Volume 4 (400-499)
Topic: 466 - Mirror, Mirror
Replies: 13
Views: 5457

466 - Mirror, Mirror

I don't know why WA.
please help.


#include <iostream.h>

bool happy[2][10][10];
int size;

bool funny( bool v1, int v2 ) {
int x, y, ix, iy;
bool r90, r180;
if ( v2 % 180 != 0 ) {
r90 = true;
} else {
r90 = false;
}
if ( v2 >= 180 ) {
r180 = true;
} else {
r180 = false;
}
for ( y = 0 ...

Go to advanced search