ctyyy的博客OMGs论文解读 返回首页
搜索
Home

OMGs论文解读

发表于2026-08-02|更新于2026-08-02|Multi-agent system for MDT
文章作者: ctyyy
文章链接: https://bjwln.github.io/2026/08/02/OMGs%E8%AE%BA%E6%96%87%E8%A7%A3%E8%AF%BB/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 ctyyy的博客!
cover of next post
下一篇
Codeforces Round 1109 (Div. 3)
A. Iskander and Drawings贪心,找最长连续子序列 123456789101112131415161718192021222324252627282930#include <bits/stdc++.h>using namespace std;void solve() { int t; cin >> t; while (t--) { int n; string s; cin >> n; cin >> s; int xian = 0; int maxx = 0; for (int i = 0; i < n; i++) { if (s[i] == '*') { maxx = max(maxx, (xian + 1) / 2); xian = 0; } else xian++; } maxx = max(maxx, (xian + 1) / 2); cout << maxx; ...
avatar
ctyyy
Record myself
文章
15
标签
0
分类
5
Follow Me
最新文章
OMGs论文解读
OMGs论文解读2026-08-02
Codeforces Round 1109 (Div. 3)
Codeforces Round 1109 (Div. 3)2026-07-22
尖椒炒火腿
尖椒炒火腿2026-07-20
酸辣土豆丝
酸辣土豆丝2026-07-15
pizza
pizza2026-07-15
网站信息
Article Count : 加载中...
Run Time : 计算中...
Final Update : 加载中...
© 2026 By ctyyy
Have a good day.
搜索
数据加载中