题目描述(Description):
将 1, 2,…,9 共 9 个数分成 3 组,分别组成 3 个三位数,且使这 3 个三位数构成 1 : 2 : 3 的比例,试求出所有满足条件的 3 个三位数。
输入(Input):
无
输出(Output):
若干行,每行 3 个数字。按照每行第 1 个数字升序排列。
输出移动过程
示例输入(Sample Input):
无
示例输出(Sample Output):
192 384 576
…
*** (剩余部分不予展示)
示例程序:
//状压朴素
#include <cstdio>
using namespace std;
int main(){
for (int i=192;i<=329;i++)
{
int p=i,j=i<<1,k=i*3,t=0;
while (