题解列表
1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int apple = 10; // 苹果数量int main() {……
1096: Minesweeper
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define MAX 100 // 地图最大尺寸 using namespace std; char position[M……
信息学奥赛一本通T1252-走迷宫
```#include#definexfirst#defineysecondusingnamespacestd;typedefpairpii;constintdx[4]={1,0,-1,0};constintdy[4]={0,-1,0,1};constintN=50;charg[N][N];bools
编写题解 1031: [编程入门]自定义函数之字符串反转(利用切片解决)
摘要:解题思路:注意事项:参考代码:def main(): a = input() print(a[::-1])main()……
蓝桥杯算法训练VIP-方格取数(c++代码)
摘要:解题思路:思路见代码注意事项:参考代码:#include<cstdio> #include<algorithm> using namespace std; struct point { ……
编写题解 1012: [编程入门]字符串分类统计
摘要:解题思路:注意事项:参考代码:a = 0b = 0c = 0d = 0e = input()for i in e: if i.isalpha(): a+=1 elif i.i……
信息学奥赛一本通T1255-迷宫问题
```#include#definexfirst#defineysecondusingnamespacestd;typedefpairpii;constintdx[4]={1,0,-1,0};constintdy[4]={0,-1,0,1};constintN=10;intg[N][N];piipre