摘要:
原题链接 题解 1.如果要使用计算符号,那么一定要按等于号,也就是说,需要激活的按键至少三个 2.只激活 \(1,+,=\) 可以达到任意数 3.比较数的长度和3 code #include<bits/stdc++.h> using namespace std; int main() { int t 阅读全文
摘要:
原题链接 题解 1.操作1肯定选最小的 2.操作2不在乎数的大小 3.因此我们可以优先实施操作1,然后再实施操作2 code #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=2e5+5; l 阅读全文