ACM 10004 Q10004: Bicoloring
作法: DFS嘗試所有可能.../************************************************************/#include<stdio.h>#include<stdlib.h>int map[201][201]={0},top[201]={0},color[201]={0};int n,m;int a,b,c,x,y,find;void DFS (int now){ if(now==n) {find=0;return;} if(find==0...