实验数据 正整数,没有前导0 相邻的数字不能相同 可以被3整除 输出可能的最小数。 输入:?12?0?9??输出:212101902 思路:搜索+回溯AC # include <bits/stdc++.h> using namespace std; vector<int> idx; bool dfs(string &str, int index, int sum) { if (index == idx.size()) { if (sum % 3 == 0) { return true; ...