福音骑士
福音骑士
全部文章
分类
归档
标签
去牛客网
登录
/
注册
福音骑士的博客
全部文章
(共3篇)
题解 | #数制转换#
#include <bits/stdc++.h> using namespace std; int char2int(char c){ if(c >= '0' && c <= '9') return c - '0'; if(c >= 'a...
2023-06-24
0
249
题解 | #坠落的蚂蚁#
#include <bits/stdc++.h> using namespace std; // bugs存放位置i下的初始虫子速度 int bugs[120]; // lefts是在速度为0的虫子左边的向右移动的虫子下标索引数组 vector<int> lefts; // ...
2023-06-23
1
275
题解 | #Repeater#
#include <iostream> using namespace std; char ori[10][10]; char ans[2][3000+10][3000+10]; int n, rows; //rows为当前ans中有效的行列数 void nextScale(int ol...
2023-04-29
0
309