95北市資訊學科能力競賽 送愛心到肯大亞 (Care)
作法:DFS搜索節點
/****************************************************/#include<stdio.h>#include<stdlib.h>double map[21][21]={0},ans=1;int n,start,end,flag[21]={0};void DFS(int now,double sum){ int a; if(now==end) ans=ans*(1-sum); f...