2864: 单词替换 摘要:```cpp #include #include using namespace std; int main() { int n=0; char s[101][101];…… 题解列表 2023年01月10日 0 点赞 0 评论 655 浏览 评分:9.9
3067: 大盗阿福 摘要:小心超时 ```cpp #include using namespace std; int w[100001],f[100001][2],n,T; int main() { io…… 题解列表 2023年01月10日 0 点赞 0 评论 487 浏览 评分:9.9
2009: 第一个带类的C++程序 摘要:```cpp #include using namespace std; class Date { private: int year,month,day; …… 题解列表 2023年01月10日 0 点赞 0 评论 549 浏览 评分:9.9
1779: 你的第一个C语言程序 摘要:直接把输出内容粘贴上去就行了(打表) ```cpp #include using namespace std; int main() { cout…… 题解列表 2023年01月10日 0 点赞 0 评论 624 浏览 评分:6.0
c++贪心+数学 摘要:```cpp #include using namespace std; #define ll long long int main() { ll n; cin>>n; …… 题解列表 2023年01月10日 1 点赞 0 评论 431 浏览 评分:9.9
1536: 蓝桥杯算法提高VIP-最长单词 摘要:```cpp #include using namespace std; int main() { int t=0; string s,v; char a[101…… 题解列表 2023年01月10日 0 点赞 0 评论 729 浏览 评分:9.9
2961: 最长单词2 摘要:```cpp #include using namespace std; int main() { int x,max=0,q,p; char ch[500]; …… 题解列表 2023年01月10日 0 点赞 0 评论 642 浏览 评分:9.9
2850: 输出亲朋字符串 摘要:```cpp #include using namespace std; int main() { string s; getline(cin,s); char …… 题解列表 2023年01月10日 0 点赞 0 评论 448 浏览 评分:9.9
[编程入门]打印图案 摘要:```cpp #include using namespace std; int main() { cout…… 题解列表 2023年01月10日 0 点赞 0 评论 853 浏览 评分:9.9
C++ 贪心+双指针 O(N)复杂度 摘要:``````````cpp #include using namespace std; #define ll long long //纪念品分组 namespace test29 { …… 题解列表 2023年01月10日 0 点赞 0 评论 533 浏览 评分:9.9