Search found 3 matches

by gkevinyen5418
Sun Jul 07, 2013 11:24 am
Forum: Volume 109 (10900-10999)
Topic: 10903 - Rock-Paper-Scissors Tournament
Replies: 27
Views: 16235

10903 [SE] Rock-Paper-Scissors Tournament

i dont know why i keep getting SE
even i submit a AC code
which i search on the Net
by gkevinyen5418
Thu Jul 04, 2013 5:45 am
Forum: Volume 1 (100-199)
Topic: 116 - Unidirectional TSP
Replies: 226
Views: 65803

Re: 116 [WA] Unidirectional TSP (C++)

wow~ i dint notice that
and thank u <(_ _)>
by gkevinyen5418
Wed Jul 03, 2013 2:42 pm
Forum: Volume 1 (100-199)
Topic: 116 - Unidirectional TSP
Replies: 226
Views: 65803

116 [WA] Unidirectional TSP (C++)

// i dont know why i get WA
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int m, n;
while( scanf("%d %d", &m, &n)!=EOF )
{
int SJ[15][105]={0};int dp[15][105]={0};int sp[15][105]={0};

for(int i = 0; i < m; i++)
for(int j = 0; j < n; j++)
scanf("%d", &SJ[i][j ...

Go to advanced search