solution.md 4.9 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 9数算式
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16
观察如下的算式:
```
9213 x 85674 = 789314562
```
左边的乘数和被乘数正好用到了1~9的所有数字,每个1次。
而乘积恰好也是用到了1~9的所有数字,并且每个1次。

请你借助计算机的强大计算能力,找出满足如上要求的9数算式一共有多少个?

注意:

1. 总数目包含题目给出的那个示例。
2. 乘数和被乘数交换后作为同一方案来看待。

每日一练社区's avatar
每日一练社区 已提交
17
以下<span style="color:red">错误</span>的是?
每日一练社区's avatar
每日一练社区 已提交
18

每日一练社区's avatar
每日一练社区 已提交
19
## aop
F
fix bug  
feilong 已提交
20

每日一练社区's avatar
每日一练社区 已提交
21
### before
F
fix bug  
feilong 已提交
22

每日一练社区's avatar
每日一练社区 已提交
23 24 25 26 27
```cpp
#include <bits/stdc++.h>
using namespace std;
```
### after
F
fix bug  
feilong 已提交
28

每日一练社区's avatar
每日一练社区 已提交
29 30 31 32 33
```cpp

```

## 答案
F
fix bug  
feilong 已提交
34

每日一练社区's avatar
每日一练社区 已提交
35
```cpp
每日一练社区's avatar
每日一练社区 已提交
36 37 38
int bei[10];
map<long long, int> mp;

每日一练社区's avatar
每日一练社区 已提交
39 40 41 42
int main()
{
    int a[9] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
    int res = 0;
每日一练社区's avatar
每日一练社区 已提交
43
    while (next_permutation(a, a + 9))
每日一练社区's avatar
每日一练社区 已提交
44 45 46
    {
        for (int i = 1; i < 9; i++)
        {
每日一练社区's avatar
每日一练社区 已提交
47
            memset(bei, 0, sizeof(bei));
每日一练社区's avatar
每日一练社区 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
            long long int ans, left = 0, right = 0, t = 0, x = 0, y = 0;
            for (int j = 0; j <= i; j++)
            {
                left = left * 10 + a[j];
            }
            x = left;
            x = x * 10;
            for (int k = i + 1; k < 9; k++)
            {
                right = right * 10 + a[k];
            }
            y = right;
            y = y * 10;
            for (int j = 0; j <= i; j++)
                y = y * 10 + a[j];

            ans = left * right;
            long long int ff = ans;
每日一练社区's avatar
每日一练社区 已提交
66
            while (ans >= 0)
每日一练社区's avatar
每日一练社区 已提交
67 68 69 70 71 72 73 74 75
            {
                int x = ans % 10;
                ans = ans / 10;
                if (bei[x] == 0 && x != 0)
                {
                    bei[x] = 1;
                    t++;
                }
            }
每日一练社区's avatar
每日一练社区 已提交
76
            if (mp.count(x) == 0 && mp.count(y) == 0)
每日一练社区's avatar
每日一练社区 已提交
77 78 79 80 81 82
            {
                res++;
                mp[x] = 1;
                mp[y] = 1;
            }
        }
每日一练社区's avatar
每日一练社区 已提交
83
    };
每日一练社区's avatar
每日一练社区 已提交
84 85 86 87 88 89
    cout << res << endl;
    return 0;
}
```
## 选项

F
fix bug  
feilong 已提交
90

每日一练社区's avatar
每日一练社区 已提交
91
### A
F
fix bug  
feilong 已提交
92

每日一练社区's avatar
每日一练社区 已提交
93
```cpp
每日一练社区's avatar
每日一练社区 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
const int N = 1e3 + 5;
int a[15] = {9, 2, 1, 3, 8, 5, 6, 7, 4}, res = 0, vis[12], temp1;
bool fun(int x)
{
    int t1 = 0, t2 = 0;
    for (int i = x, j = 1; i >= 0; i--, j *= 10)
    {
        t1 = a[i] * j + t1;
    }
    for (int i = 8, j = 1; i > x; i--, j *= 10)
    {
        t2 = a[i] * j + t2;
    }

    temp1 = t1 * t2;
    int temp = temp1;
    memset(vis, 0, sizeof(vis));
    while (temp)
    {
        vis[temp % 10] = 1;
        temp /= 10;
    }
    for (int i = 1; i <= 9; i++)
    {
        if (!vis[i])
            return false;
    }
    return true;
}
每日一练社区's avatar
每日一练社区 已提交
123 124
int main()
{
每日一练社区's avatar
每日一练社区 已提交
125 126 127 128 129 130

    for (int i = 0; i < 9; i++)
        a[i] = i + 1;

    set<int> st;
    do
每日一练社区's avatar
每日一练社区 已提交
131
    {
每日一练社区's avatar
每日一练社区 已提交
132
        for (int i = 0; i < 8; i++)
每日一练社区's avatar
每日一练社区 已提交
133
        {
每日一练社区's avatar
每日一练社区 已提交
134
            if (fun(i))
每日一练社区's avatar
每日一练社区 已提交
135
            {
每日一练社区's avatar
每日一练社区 已提交
136
                st.insert(temp1);
每日一练社区's avatar
每日一练社区 已提交
137 138 139
                res++;
            }
        }
每日一练社区's avatar
每日一练社区 已提交
140 141 142
    } while (next_permutation(a, a + 9));
    cout << res / 2 << '\n';

每日一练社区's avatar
每日一练社区 已提交
143 144 145 146 147
    return 0;
}
```

### B
F
fix bug  
feilong 已提交
148

每日一练社区's avatar
每日一练社区 已提交
149
```cpp
每日一练社区's avatar
每日一练社区 已提交
150 151 152
int st[10], res[10], book[10], cnt;

int cal(int l, int r)
每日一练社区's avatar
每日一练社区 已提交
153
{
每日一练社区's avatar
每日一练社区 已提交
154 155
    int t = 0;
    for (int i = l; i <= r; i++)
每日一练社区's avatar
每日一练社区 已提交
156
    {
每日一练社区's avatar
每日一练社区 已提交
157 158 159 160
        t = t * 10 + res[i];
    }
    return t;
}
每日一练社区's avatar
每日一练社区 已提交
161

每日一练社区's avatar
每日一练社区 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
bool check(int k)
{
    for (int i = 0; i < 10; i++)
        book[i] = 0;
    while (k)
    {
        book[k % 10]++;
        k /= 10;
    }
    bool flag = true;
    for (int i = 1; i <= 9; i++)
    {
        if (book[i] != 1)
            flag = false;
    }
    return flag;
}

void dfs(int k)
{
    if (k == 9)
    {
        for (int i = 0; i < 8; i++)
        {
            int a = cal(0, i);
            int b = cal(i + 1, 8);
            if (check(a * b))
每日一练社区's avatar
每日一练社区 已提交
189
            {
每日一练社区's avatar
每日一练社区 已提交
190
                cnt++;
每日一练社区's avatar
每日一练社区 已提交
191 192
            }
        }
每日一练社区's avatar
每日一练社区 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
        return;
    }
    for (int i = 1; i <= 9; i++)
    {
        if (!st[i])
        {
            st[i] = 1;
            res[k] = i;
            dfs(k + 1);
            st[i] = 0;
        }
    }
}
int main()
{
    dfs(0);
    cout << cnt / 2;
每日一练社区's avatar
每日一练社区 已提交
210 211 212 213 214
    return 0;
}
```

### C
F
fix bug  
feilong 已提交
215

每日一练社区's avatar
每日一练社区 已提交
216
```cpp
每日一练社区's avatar
每日一练社区 已提交
217 218 219 220 221 222
typedef long long LL;
const int N = 15;
bool vis[N];
int ans;

bool check_2(LL sumb)
每日一练社区's avatar
每日一练社区 已提交
223
{
每日一练社区's avatar
每日一练社区 已提交
224 225
    bool st[N];
    for (int i = 1; i <= 9; i++)
每日一练社区's avatar
每日一练社区 已提交
226
    {
每日一练社区's avatar
每日一练社区 已提交
227 228 229 230 231 232 233 234 235 236 237
        st[i] = 0;
    }
    while (sumb)
    {
        st[sumb % 10] = true;
        sumb = sumb / 10;
    }
    bool flag = false;
    for (int i = 1; i <= 9; i++)
    {
        if (!st[i])
每日一练社区's avatar
每日一练社区 已提交
238
        {
每日一练社区's avatar
每日一练社区 已提交
239 240 241 242 243
            return false;
        }
    }
    return true;
}
每日一练社区's avatar
每日一练社区 已提交
244

每日一练社区's avatar
每日一练社区 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
bool check_1(int suma, int sumc)
{
    LL sumb = (LL)suma * sumc;
    if (check_2(sumb))
    {
        return true;
    }
    return false;
}

void dfs_c(int u, int suma, int sumc)
{
    if (u > 9)
    {
        return;
    }

    if (check_1(suma, sumc))
    {
        ans++;
        return;
    }

    for (int i = 1; i <= 9; i++)
    {
        if (!vis[i])
        {
            vis[i] = true;
            dfs_c(u + 1, suma, sumc * 10 + i);
            vis[i] = false;
每日一练社区's avatar
每日一练社区 已提交
275
        }
每日一练社区's avatar
每日一练社区 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
    }
}

void dfs_a(int u, int suma)
{
    dfs_c(u, suma, 0);

    for (int i = 1; i <= 9; i++)
    {
        if (!vis[i])
        {
            vis[i] = true;
            dfs_a(u + 1, suma * 10 + i);
            vis[i] = false;
        }
    }
}

int main()
{
    dfs_a(0, 0);
    cout << ans / 2 << endl;
每日一练社区's avatar
每日一练社区 已提交
298 299 300
    return 0;
}
```