Initialq
Initialq
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Initialq的博客
全部文章
(共2篇)
题解 | 牛牛的字符菱形
#include <bits/stdc++.h> using namespace std; int main() { string a; while (cin >> a) { // 注意 while 处理多个 case int i = -2;...
2025-12-07
0
25
题解 | 左侧严格小于计数
#include <bits/stdc++.h> using namespace std; int main() { int n;cin>>n; int cnt = 0; vector<int> a(n+1),b(n+1); fo...
2025-12-02
0
20