codeforces 242d

题目:http://codeforces.com/problemset/problem/242/D


其实简单的BFS就可以搞定的。。但是我就是不能看出这个模型= =!!


#include
#include
#include
using namespace std;
const int maxn = 100010;
vector ans,v[maxn];
queue q;
int a[maxn],b[maxn];
int main(){
    int n,m,v1,v2;
    scanf("%d%d",&n,&m);
    for(int i=0;i



你可能感兴趣的:(algorithm)