알고리즘 문제 AVOID에서 내가 제출한 틀린 답
#include #include #include #define TRUE 1 #define FALSE 0 #define MAX_VERTICES 150 #define MAX_ELEMENT 105 #define MAX 1000 #define MAX_DEST 10000 #define MAX_WEIGHT 2000000 int spotAmount=0; int wayAmount=0; int destAmount=0; int destPt[MAX_DEST]={}; int weight[MAX_VERTICES][MAX_VERTICES]={}; int distance[MAX_VERTICES]; int found[MAX_VERTICES]; int allWay[MAX]={1,}; int passPoint[MAX_VERTICES][..