正义人
正义人
全部文章
分类
归档
标签
去牛客网
登录
/
注册
正义人的博客
全部文章
(共3篇)
题解 | #全排列#
#include <iostream> #include <cstring> using namespace std; char str[7]; char board[7]; bool isused[7]; void myout(int maxlevel,int now)...
2023-02-08
0
270
题解 | #密码翻译#
#include<iostream> #include<cstring> using namespace std; char str[81]; void translate() { int len = strlen(str); for (int i = 0;...
2023-02-04
0
283
题解 | #谁是你的潜在朋友#
#include<iostream> #include<queue> #include<vector> using namespace std; struct Collect { priority_queue <int, vector<int...
2023-02-04
0
335