• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






Object_S

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | | 管理

随笔分类 -  常见题型 -- 模拟

 
数组奇偶操作
摘要:C++代码 #include<cstdio> #include<iostream> #include<algorithm> using namespace std; int a[10000],b[10000],val[10000]; int main(){ int n; do{ scanf("%d" 阅读全文
posted @ 2022-04-13 18:11 Object_S 阅读(47) 评论(0) 推荐(0)
AtCoder Beginner Contest 225 D - Play Train
摘要:题意 题解 手动做链表模拟 #include<cstdio> #include<iostream> #include<vector> using namespace std; const int MAXN = 2e5; struct Car { int front, back; }tr[MAXN]; 阅读全文
posted @ 2021-12-17 11:02 Object_S 阅读(37) 评论(0) 推荐(0)