牛客多校第一场 Problem D Two Graphs 2018-8-04 19:29 | 4,694 | 0 | C++,牛客多校,算法 | Ryan 123 字 | 3 分钟 题意 n个点,m1条边的图E1,n个点,m2条边的图E2。求图E2有多少子图跟图E1同构。 题解 由于题目数据范围不大考虑暴力枚举$n!$范围的所有结果。 答案除以自同构数。 AC代码 #include <iostream> #include <cstring> #include <algorithm> #inc… C++暴力