LGR-213 作弊名单
  • 板块站务版
  • 楼主chen_zheAya
  • 当前回复1114
  • 已保存回复1144
  • 发布时间2025/1/19 15:54
  • 上次更新2025/2/3 16:41:05
查看原帖
LGR-213 作弊名单
8457
chen_zheAya楼主2025/1/19 15:54

相似度过高,判定为抄袭:

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 之前在本贴申诉。申诉需要有详细的理由,没有声明理由的申诉可能不予受理。申诉仅限一次。以下理由不会被接受:

  1. 使用了 AI 生成的代码
  2. 同一个老师教的,所以代码风格一样。
  3. 另一个人抄了我的代码。
  4. 不小心交到了另一个账号上。

考虑到管理员处理申诉需要耗费精力,因此如果申诉被驳回,管理员可以决定延长棕名惩罚时间一倍。据统计,申诉成功的个案占被处罚的个案中的很小一部分,因此请在申诉非常有把握成功的情况下再进行申诉。

自 2023 年 1 月 1 日起到 2025 年 1 月 19 日 16 时,已经检测与认定作弊案例 1964 人次,封禁累犯作弊者 99 人,申诉 64 人次,认定申诉有效而撤回惩罚 22 次,申诉成功的个案占被处罚的个案中的 1.12%。

2025/1/19 15:54
1020063
chenxi20092025/1/21 09:48

@_Segment_tree__ytx 代码引用请附链接证明时间。

或者文件的话传网盘上,我们可以看到修改时间。

2025/1/21 09:48
1172967
_Segment_tree__ytx2025/1/21 09:48

代码没翻到……但是这个是我们老师写的代码,像AI吗?

#include <bits/stdc++.h>
using namespace std;

#define F(i, j, k) for (int i = j; i <= k; ++i)
#define DF(i, j, k) for (int i = j; i >= k; --i)

const int N = 1e5 + 100;

int num[N];

string st;

bool tp[N];

inline void solve1(int l, int r) {
    F(i, l, r) {
        if (i == l || st[i - 1] == '*')
            st[i] = '9';
        if (i > l && st[i - 1] == '/')
            st[i] = '1';
    }
}

queue<vector<pair<int, int>>> a[N];

int mx;

inline void solve0(int l, int r) {
    int sum = 0;
    F(i, l, r) if (st[i] == '/')++ sum;
    if (!sum) {
        F(i, l, r) if (st[i] == '?') st[i] = '1';
        return;
    }
    F(i, l, r) {
        if (i == l)
            st[i] = '1';
        if (st[i] == '/')
            st[i + 1] = '9';
        if (st[i] == '*')
            st[i + 1] = '1';
    }
    vector<pair<int, int>> v;
    v.emplace_back(make_pair(l, r));
    mx = max(mx, sum);
    a[sum].push(v);
}

inline void jian(int l, int r) {
    F(i, l, r) if (st[i] == '/' && st[i + 1] == '9') {
        st[i + 1] = '1';
        break;
    }
}

int main() {
    freopen("C.in", "r", stdin);
    freopen("C.out", "w", stdout);
    ios_base::sync_with_stdio(false), cin.tie(nullptr);
    cin >> st;
    int len = int(st.size());
    int cnt = 0;
    num[++cnt] = -1;
    tp[cnt] = 1;
    for (int i = 0; i < len; ++i) {
        if (st[i] == '+') {
            num[++cnt] = i;
            tp[cnt] = 1;
        }
        if (st[i] == '-') {
            num[++cnt] = i;
            tp[cnt] = 0;
        }
    }
    num[++cnt] = len;
    F(i, 1, cnt - 1) {
        if (tp[i])
            solve1(num[i] + 1, num[i + 1] - 1);
        else
            solve0(num[i] + 1, num[i + 1] - 1);
    }
    ++mx;
    while (mx > 1) {
        mx--;
        while (a[mx].size() >= 9) {
            vector<pair<int, int>> now;
            F(i, 1, 9) {
                for (auto it : a[mx].front())
                    now.emplace_back(it);
                a[mx].pop();
            }
            if (mx > 1)
                a[mx - 1].push(now);
        }
        if ((mx > 1 && a[mx - 1].empty() && !a[mx].empty()) ||
            a[mx].size() == 1) {
            while (!a[mx].empty()) {
                for (auto it : a[mx].front())
                    jian(it.first, it.second);
                if (mx > 1)
                    a[mx - 1].push(a[mx].front());
                a[mx].pop();
            }
            continue;
        }
        if (!a[mx].empty()) {
            vector<pair<int, int>> now;
            for (auto it : a[mx].front())
                st[it.first] = char(48 + 10 - a[mx].size());
            while (!a[mx].empty()) {
                for (auto it : a[mx].front())
                    now.emplace_back(it);
                a[mx].pop();
            }
            if (mx > 1)
                a[mx - 1].push(now);
        }
    }
    cout << st << '\n';
}

2025/1/21 09:48
1235038
Ekin1232025/1/21 09:48

管理制度错了就要改,不能让无辜的人以泪洗面,如果管理制度还是这样的话,洛谷将会越来越腐败!!,我大不了就棕名,我要让洛谷知道瞎诬陷的严重性!

2025/1/21 09:48
472950
Mr_Terminator2025/1/21 09:48

萌熊,st,减,不像

2025/1/21 09:48
678881
Vocaloid世末歌者2025/1/21 09:48

@chenxi2009 是,之前考级的时候因为一个高音mi要换指差点寄了

2025/1/21 09:48
1172967
_Segment_tree__ytx2025/1/21 09:49

@Ekin123 不是?又来?

2025/1/21 09:49
1020063
chenxi20092025/1/21 09:49

mx,st,it,jian,不像。

2025/1/21 09:49
1235038
Ekin1232025/1/21 09:49

@_Segment_tree__ytx 没来,玩个梗(

2025/1/21 09:49
1115541
dong07172025/1/21 09:50

怎么又吵起来了,当事人不都承认了吗?有什么好吵的@AI_god 你没发现你被利用了吗?干脆锁帖吧,申诉期也过了

2025/1/21 09:50
678881
Vocaloid世末歌者2025/1/21 09:51

你老师这个很正常啊

2025/1/21 09:51