2023年7月20日
摘要: 马猴烧酒 题意:懂得都懂 思路:由于n的范围很小,直接爆搜枚举一下a放到第几行,然后当枚举到a次的时候,判断一下需要几次b操作 代码: #include<bits/stdc++.h> using namespace std; int const N=1e4+5; #define int long l 阅读全文
posted @ 2023-07-20 12:20 IR101 阅读(6) 评论(0) 推荐(0) 编辑
摘要: A. Technical Support 题意:简单的栈 思路:stack 代码: #include<bits/stdc++.h> using namespace std; int const N=1e4+5; #define int long long int fa[500005]; int d[ 阅读全文
posted @ 2023-07-20 10:42 IR101 阅读(3) 评论(0) 推荐(0) 编辑