The number of colors in the graph

Source: Internet
Author: User

Purple book P286:

Classic problem, no graph G, each node staining, adjacent nodes of different colors, to find the minimum number of colors.

Set D (s) to indicate the minimum color required to dye the node S. Then there is D (S) = d (s-s ') + 1; S ' is a color that can be dyed, (i.e. s ' no u,v makes u,v adjacent). The subset S ' is then enumerated in S.

#include <bits/stdc++.h>using namespacestd;#defineMaxnode 1000#defineINF 0x3f3f3f3fintN///Number of nodesintd[maxnode<<1]intMain () {d[0] =0;  for(ints=1; s< (1&LT;&LT;N); s++) {D[s]=INF;  for(intS0 = S; S0; S0 = (s0-1) &S) {if(No_edges_inside[s0]) D[s]= Min (d[s],d[s-s0]+1); }    }            return 0;}

The number of colors in the graph

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.