相似度过高,判定为抄袭:
yi_hr lrj100815
D_xbang yekc2010
2023z fly_qyz
3apple songhy_cn
bzd_oik AC_AC_AC
zhouhaoyu1011 我是歌者
涉嫌使用 AI:
ljh0727 yhj678520 wangtanhao2013 un1i _lyhlyh_
luoYiCheng_PrOI greatvalue yangxinyi l0_Ol wwanghaoyu123456
_Segment_tree__ytx team_csp_ojz Wuyuetongzhou houtony simon20110911
xhhyj Cai_Tang myne 1146582663L liuwenhui1
如果对判罚不服者,请在 2025-01-20 20:00 之前在本贴申诉。申诉需要有详细的理由,没有声明理由的申诉可能不予受理。申诉仅限一次。以下理由不会被接受:
考虑到管理员处理申诉需要耗费精力,因此如果申诉被驳回,管理员可以决定延长棕名惩罚时间一倍。据统计,申诉成功的个案占被处罚的个案中的很小一部分,因此请在申诉非常有把握成功的情况下再进行申诉。
自 2023 年 1 月 1 日起到 2025 年 1 月 19 日 16 时,已经检测与认定作弊案例 1964 人次,封禁累犯作弊者 99 人,申诉 64 人次,认定申诉有效而撤回惩罚 22 次,申诉成功的个案占被处罚的个案中的 1.12%。
1234567890-1234567890
蒸蒸日上啊
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
string S;
cin >> S;
int type;
cin >> type;
// 存储每拍敲击的手指集合
vector<string> beats;
string currentBeat = "";
// 解析字符串,提取每拍的手指集合
int n = S.size();
for (int i = 0; i < n; ++i) {
if (S[i] == '(') {
// 开始一个括号,收集多手指同时敲击
currentBeat = "(";
} else if (S[i] == ')') {
// 结束一个括号,加入beats
currentBeat += ')';
beats.push_back(currentBeat);
currentBeat = "";
} else if (S[i] == 'L' || S[i] == 'R' || S[i] == '\'') {
// 其他字符,手指敲击
currentBeat += S[i];
}
}
// 计算拍数
int totalBeats = beats.size();
cout << totalBeats << endl;
if (type == 1) {
// 计算每根手指的最大连续敲击次数
vector<int> maxConsecutive(4, 0); // 存储四个手指的最大连续敲击数
// 当前拍是敲击的状态,跟踪每个手指是否敲击
vector<bool> isPressed(4, false);
// 索引映射
int fingerIndex[4] = {0, 1, 2, 3}; // 对应 L, L', R, R'
vector<string> fingers = {"L", "L'", "R", "R'"};
// 记录连续敲击次数
vector<int> consecutive(4, 0);
for (int i = 0; i < totalBeats; ++i) {
// 解析每一拍,更新当前敲击的状态
for (int j = 0; j < 4; ++j) {
if (beats[i].find(fingers[j]) != string::npos) {
isPressed[j] = true;
} else {
isPressed[j] = false;
}
}
// 更新每根手指的连续敲击次数
for (int j = 0; j < 4; ++j) {
if (isPressed[j]) {
consecutive[j]++;
maxConsecutive[j] = max(maxConsecutive[j], consecutive[j]);
} else {
consecutive[j] = 0;
}
}
}
// 输出四个手指的最大连续敲击次数
cout << maxConsecutive[0] << " " << maxConsecutive[1] << " "
<< maxConsecutive[2] << " " << maxConsecutive[3] << endl;
}
return 0;
}
这个代码,我建议辩护的人自己打一遍,看能不能一分钟打完
@AI_god 提前写两道题也没道理,咋提前写了还要隔两分钟交啊?等评测结果等了两分钟?
我的脑子:
spfa跑菊花图——未响应
无敌了哥们,一分钟两千字,你AC Saber分数是一万吧,薄纱zlt了吧
自动补全还好说,提前写这是真扯。欲盖弥彰。
提前写怕不是小l转世