首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
3332专题
题目:迷失之地(蓝桥OJ 3332)
问题描述: 解题思路: 先找到最大的数,因为他的位是最大的。 再找前面含缺零位为的最大数,依次类推,直到没有0位或早不到能补零的位。 题解: #include<bits/stdc++.h>using namespace std;const int N = 1e6 + 10;int q[N], st[N];int n, maxn, id
阅读更多...