PAT A1154


一道弱智的题。。我他妈的却废了这么久

就是个边判别的题我还用dfs和bfs。。。之后又忽律颜色给定的范围,范围根本不得而知,结果在一个case上卡了很久,直接用set去重就完美解决。。。






!!

#include
#include
#include
#include
#include
#include
#include
using namespace std;
using std::set;
const int maxn=10010;
struct edge{
    int a;
    int b;
}table[maxn];
int query[maxn];
int hashtable[maxn]={0};

int main(){
    int n,m;
    scanf("%d",&n);
    scanf("%d",&m);
    int a,b;
    for(int i=0;icolor;
        for(int j=0;j

你可能感兴趣的:(水题,c++)