Блог пользователя eyfxrby

Автор eyfxrby, 3 месяца назад, По-русски

Шумбрат, Сәлам, Привет Codeforces!

Мы очень рады позвать вас принять участие в Codeforces Round 1103 (Div. 3) в 12.06.2026 17:35 (Московское время) — очередном Codeforces раунде для третьего дивизиона. В этом раунде будет 7-8 задач, которые подобраны по сложности так, чтобы составить интересное соревнование для участников с рейтингами до 1600. Однако все желающие, чей рейтинг 1600 и выше, могут зарегистрироваться на раунд вне конкурса.

Раунд пройдёт по правилам образовательных раундов. Таким образом, во время раунда задачи будут тестироваться на предварительных тестах, а после раунда будет 12-часовая фаза открытых взломов; после её завершения все успешные попытки будут перетестированы на успешных взломах. Мы постарались сделать приличные тесты — так же как и вы, мы будем расстроены, если у многих будут падать решения после окончания контеста.

Вам будет предложено 7-8 задач и 2 часа 30 минут на их решение.

Штраф в этом раунде будет равняться 10 минутам.

Напоминаем, что в таблицу официальных результатов попадут только достоверные участники третьего дивизиона. Как написано по ссылке — это вынужденная мера для борьбы с неспортивным поведением. Для квалификации в качестве достоверного участника третьего дивизиона надо:

  • принять участие не менее чем в пяти рейтинговых раундах (и решить в каждом из них хотя бы одну задачу);

  • не иметь в рейтинге точку 1900 или выше.

Независимо от того, являетесь ли вы достоверным участником третьего дивизиона или нет, если ваш рейтинг менее 1600, то раунд для вас будет рейтинговым.

Задачи были придуманы и подготовлены arsen1y, dvb1r и мной.

Мы хотим выразить специальную благодарность этим замечательным людям:

photo 2026 06 09 20 05 30

P.S. Попробуйте сопоставить каждого автора раунда на фотографии!

UPD. Разбор выложен!

  • Проголосовать: нравится
  • +240
  • Проголосовать: не нравится

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

finally a div3

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

As a glumbus, I was told to comment "meow >w<"

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +41 Проголосовать: не нравится

As a friend of the authors, the contest is so legendary that I forgot to test it.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +29 Проголосовать: не нравится

if you know anything about the history of this round, you know just how long it's been in the works and how legendary it's going to be

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +15 Проголосовать: не нравится

as a not tester, :(

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +24 Проголосовать: не нравится

From left to right: eyfxrby arsen1y dvb1r Am I right?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +21 Проголосовать: не нравится

The best div3 i have ever tested :)

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +11 Проголосовать: не нравится

hoping for an interesting round :P

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +15 Проголосовать: не нравится

as a tester, i was a tester

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +32 Проголосовать: не нравится

as a tester hfeyl htfkmyj rhenjq gl to everyone also

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +8 Проголосовать: не нравится

As a tester, I think all kinds of participants will find this round interesting, so make sure to register!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Hope to become master

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +34 Проголосовать: не нравится

As a tester, I can confidently say that this is the best Tatar TV show I've participated in.

  • »
    »
    3 месяца назад, скрыть # ^ |
     
    Проголосовать: нравится -8 Проголосовать: не нравится

    hey, can you please tell me why is the test n=4, k=4, s=1100 is YES? if n-k=0 then i can go from 1 to n-k, that is 1 to 0, which makes no sense. there is no number less than zero, and greater than 1. so basically, we do not have i, and thus no i+k. we cannot make any changes in the given string, so it is YES only if the string is all zeros, but it is not, so the answer should be NO. I'm getting WA in this test. this is a test in test case 2. This problem is Tatar Show, problem B.

    • »
      »
      »
      3 месяца назад, скрыть # ^ |
      Rev. 3  
      Проголосовать: нравится 0 Проголосовать: не нравится

      output is "NO", try running the editorial code

      edit: i am pretty sure you're failing the case n=3 k=1 s=101

      edit2: the condition if(s[i]!=s[i+k]) should be removed. change to:

      if (s[i] == '1') {
          s[i] = '0';
          if (s[i + k] == '0') {
              s[i + k] = '1';
          } else {
              s[i + k] = '0';
          }
      }
      
»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

I'm ready to return to newbie this contest.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +8 Проголосовать: не нравится

As a college student preparing for final exams, I'll sleep early this round.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +10 Проголосовать: не нравится

Hoping for an interactive problem

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +6 Проголосовать: не нравится

cool profile picture :D

Spoiler
»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

What does “7-8 tasks” mean? Is there any task which has easy and hard versions?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I dont want to return to newbie this round

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

div 3 have to regain rating above 1000

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Add some Interactive problem

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +17 Проголосовать: не нравится

You will be given 7-8 tasks for 2 hours and 30 minutes to complete them.

So do we need to solve -1 problems in this contest?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I am waiting for the next contest with interactive problem

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +21 Проголосовать: не нравится

As a tester, I can say that the penalty in this round will be 10 minutes.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

div 3 farming :)

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

Опа, раунд от егора

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

finally, i div 3, better if there's also div 4 incoming

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +8 Проголосовать: не нравится

Сәлам!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

As a dust on dvb1r's table, I can confirm the round will be great!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I have to write a Practical File and also have 2 External Exam Viva Tomorrow , I hope after that I will be Alive to give this contest. Very Excited for the contest.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +30 Проголосовать: не нравится

Someone please buy Egor Nachkin a Coke Zero, because without it he starts doing weird things like creating Codeforces rounds.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

As a liar, I tested the problems!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +5 Проголосовать: не нравится

Are there any hard questions?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

As a tester I am not a tester

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +4 Проголосовать: не нравится

My first rated Div3 after a long time xd. Here we go again...

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

According to my dream, problem A will be about cutting circles, and problems E1, E2, and F will be really hard, good luck guys (yes this is a real dream I had about this round, even though there's no subtasks)

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

when will ratings update?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Thank you so much for Div 3. :p. First time I solved 5 problems! The codes are shorter than I thought it should be.

  • »
    »
    3 месяца назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    Can you explain how u solved d?

    • »
      »
      »
      3 месяца назад, скрыть # ^ |
       
      Проголосовать: нравится 0 Проголосовать: не нравится

      You can cheese it by only considering when the answer is "YES" and praying that all other cases give "NO". First, we observe that $$$x \leq y,$$$ so the numbers selected must be non-decreasing. This leads us to consider the cases near when $$$y$$$ is maximal (in other words, you can only choose $$$y$$$ and no other larger numbers due to $$$k$$$). Let $$$b_i$$$ be the largest such number, and let $$$b_{i - 1}$$$ be the closest number less than $$$b_i$$$. One observation is that if the number of values with value $$$b_i$$$ is even, then the answer is "YES". Another observation is that if you can go from $$$b_{i - 1}$$$ to $$$b_i$$$, then if the number of values with value $$$b_i$$$ is odd, then the answer is "YES".

      We proof by AC that all other cases are "NO".

      • »
        »
        »
        »
        3 месяца назад, скрыть # ^ |
        Rev. 2  
        Проголосовать: нравится 0 Проголосовать: не нравится

        We proof by AC that all other cases are "NO".

        Normal type of coder, I guess.

      • »
        »
        »
        »
        3 месяца назад, скрыть # ^ |
         
        Проголосовать: нравится 0 Проголосовать: не нравится

        Okk thank you

      • »
        »
        »
        »
        3 месяца назад, скрыть # ^ |
         
        Проголосовать: нравится 0 Проголосовать: не нравится

        For a proof sketch, the only other case is where there is an odd quantity of each number in the array and the differences are all more than $$$k$$$. Then the entire game consists only of whatever number is chosen in the first move (since no transitions are possible). Now since the quantity of this number is odd, the first player wins.

      • »
        »
        »
        »
        3 месяца назад, скрыть # ^ |
         
        Проголосовать: нравится 0 Проголосовать: не нравится

        This is some text.

        // this is code
        void inc(int pos, int d) {
            for (; pos < n; pos |= pos + 1)
                f[pos] += d;
        }
        

        The rest of the text.

        include <bits/stdc++.h>

        using namespace std;

        define ll long long

        define str string

        define bl bool

        define fi first

        define se second

        define pb push_back

        define all(s) s.begin() , s.end()

        void solve() { ll n, k; cin >> n >> k; vector a(n); for(auto &x : a) cin >> x;

        ll cnt = 1;
        sort(a.rbegin() , a.rend());
        for(ll i = 1; i < n; i++){
            if(a[i - 1] == a[i]) cnt++;
            else if(a[i - 1] - a[i] <= k) { cout << "YES" << endl; return;}
            else{
                if(cnt % 2 == 0) { cout << "YES" << endl; return;}
                else cnt = 1;
            }
        }
        
        if(cnt & 1) cout << "NO" << endl;
        else cout << "YES" << endl;

        }

        int main() { ios_base::sync_with_stdio(false); cin.tie(NULL);

        ll t; cin >> t;
        while (t--) solve();
        return 0;

        }

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Loved it, really

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I took too long to solve $$$D$$$ using DP, and due to that missed $$$F1$$$ by just a few seconds. Sadge :(

»
3 месяца назад, скрыть # |
Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

B > C

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

guys is there any limit of how many questions we ask in a contest ??? just asking and def wont spam and idk but why is this round legendary ? i didnt read other questions except a b c d

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Any hints for F1?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

First time solving 6 problems with a clutch E solve! Can believe I actually get to use what I just learned lol, sliding window is awesome.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I failed F1 because I had the wrong mod and now I'm gonna end up with like 3 points below specialist

»
3 месяца назад, скрыть # |
Rev. 3  
Проголосовать: нравится +16 Проголосовать: не нравится

Problem G is too hard for me. I think this is the hardest Div.3 G problem I've ever seen.

I’ve been spending the whole contest on the last problem for the past div.2/3 rounds. I succeeded in the last Edu Round, but not this time.

Anyway, I really enjoyed the problem G in this contest.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Bad contest.

  1. Tight TL on C, E.
  2. Distracting names in problem D, I read it 4 times to finally realize that the person who makes the very first move isn't the person playing. I appreciate authors wanting to put their names in their product, but it was just painful to read, especially for non-russians.
»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

What was wrong with setting D huh?

I mean this is a personal banter but D took a huge chunk of time!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Any hints for C?

  • »
    »
    3 месяца назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    For C for a and b make paths for a and b . paths are made from a and b by dividing it by x until its zero then see if a and b meet at any other point not on both these paths you can say there is always a better solution than this! so.... from here you can do

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can someone hack my E? 378400145

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

E was a nice problem!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

It was indeed incredible

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +4 Проголосовать: не нравится

TL for E seems too tight for me.

My solution(378403509) ran in O(N^2 log N) where as the correct solution seems to run in O(N^2). An equivalent solution(378441025) passed where the only difference was adjusting from using a set<pair<int,int>> to a vector<vector<bool>> and set<int> to vector<bool>. I got the idea and implemented a working solution which feels like the essence of the problem. In my opinion, small optimizations to remove a log factor, data oriented programming, or utilizing pragmas should not be part of the problem.

I do not know how the problem was intended to be solved, but this was a very natural implementation given the problem. A sparse set certainly 'feels' faster when the number of valid subarrays is limited(e.g. random array) but should still be asymptotically fast enough for larger test cases. Granted, I was stupid by not trying to handle this in contest, but I normally find single log N factors irrelevant to the problem.

The reason for the set, handling duplicates, was also not covered in the test cases leading me to wonder if the problem designers had considered the potential extra log N. I have made 2 successful hacks so far based on this flaw in testcases.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

Some hacks on E are getting unexpected verdict, can you look into it?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится -6 Проголосовать: не нравится

The account AlgoQuasar123 was banned during the contest. Could you please review its submissions during the contest. I believe you’ll find that this was a false positive.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +8 Проголосовать: не нравится

The best contest ever!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится -19 Проголосовать: не нравится

GUYS can we use ai for hacking ???

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone explain time limit of solutions for problem F2? isnt it n log^ 3(ai)? so i feel it shouldnt fit in 3 secs

  • »
    »
    3 месяца назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    If implemented well, it's more like $$$\mathcal{O}(P*\log(n))$$$, where the P is the total number of prime factors, and the $$$\log(n)$$$ comes from the maximum power of a prime. In the worst case, $$$P = n*\log(\log(n))$$$, where $$$\log(\log(n))$$$ is a rough estimate of the maximum number of prime factors, so in total its around $$$\mathcal{O}(n*\log(n)*\log(\log(n))$$$, which is around 1e6, so it should be fine.

  • »
    »
    2 месяца назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    We can do DP in $$$O(\log^2 a_i)$$$ with some prefix sums. We must implement carefully to let a $$$O(\log^3 a_i)$$$ solution pass. A common approach is to avoid taking modulo on every addition.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

It was a really nice and enjoyable contest. Maybe F2 and G were a bit too much and too difficult for Div. 3; for example, if G had involved a segment tree, the contest would have been even more awesome. But regardless, that doesn't take away from how cool the contest was. Thank you! fast tutorial please:)

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Is this kind of braindead solution for problem E supposed to pass ? 378442486

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +4 Проголосовать: не нравится

VERY WEAK TESTCASE GOT DESTROYED IN E !!

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can some please explain problem D?

If Arseniy chooses x then the next set of values for Egor to chose are [x, x+k] then lets say Egor choses z then for Dabir its [z,z+k] ? or its [z,x+k]?

Or any explanations welcome.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

Why is the time limit for E 3 seconds if O(n^2 logn) is not supposed to pass, I wasted most of my time optimizing the constant factor rather than trying a n^2 solution because 3000 (lengths to iterate) * 6000 (size of array) * log(6000) access in map is nearly 2.26 * 10^8

»
3 месяца назад, скрыть # |
Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

Changing webpage so fast to hack... that my account was flagged twice for crawling... ninni guys

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +4 Проголосовать: не нравится

My video and text editorial for all problems is available here https://codeforces.me/blog/entry/154479

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone share and explain dp approach for problem D?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

D was a good problem but i felt the framing of problem statement was bad initially due to which i was thinking choosing x was constant until i saw the changes made in problem statement and submitted just 1 s after the contest ended getting ac i wonder how people interpreted it correctly

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

editorial pleaseee

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

This is my 1st contest.......Can anyone tell me when does the rating changes

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

d was a good problem but the language should have been clear instead of changing it mid contest in last 20 min i realized what the problem meant and solved it 1 min after the contest ended.I thought x was constant throughout the game then after correction i got it x getting changed every move. was it only me or anyone else faced the same problem?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +3 Проголосовать: не нравится

great problemset,absolutely enjoyed the problems . i just felt that E's statements and sample could have been better .

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

solving D using sparse table. hehehe

»
3 месяца назад, скрыть # |
Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

So how long will my crawl flag stay?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

why does my code works for the problem D?378488814

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

where is edutorial? where i can the tutorial the solutions?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

where is editorial?

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

when’s editorial going to be published??

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Please upload the editorial for Codeforces Round 1103 (Div. 3), its been 24 hrs. I'm waiting, thanks.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

The difficulty was div2

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<math.h>
#include<cctype>
#include<cstdlib>
#define el endl 

using namespace std;

int func1(int n, int k, string s){
   for(int i=0;i<n;i++){
      if(s[i]!='0'){
         return -1;
      }
   }
   return 1;

}

int func(int n, int k){

   string s;cin>>s; 
   cout << s << el;
   int f = n-k;
   if (f == 0){
      return func1(n, k, s);
   }
   for(int i=0;i<f;i++){

      if(s[i] != s[i+k]){
         return -1;
      }
      else{
         s[i] = '0';
         s[i+k] = '0';
      }
   }
   for(int i=0;i<n;i++){
      if(s[i] != '0'){
         return -1;
      }
   }
   return 1;

}

int main(){
   int t;cin>>t;
   for (int i=0;i<t;i++){
      int n, k;cin>>n>>k;
     int q = func(n, k);
     if(q == -1){
      cout<<"NO"<<el;
     }
     else{
      cout<<"YES"<<el;
     }

   }
}

Please can anyone tell me what is wrong in this code? It is working fine on test case 1, but not on test case 2. IDK what is the problem.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I am writing regarding the recent similarity report for my submission to problem 2236D. I solved this problem on my own during the contest. In fact, I spent a significant amount of time thinking about the problem before arriving at my solution. I did not copy code from another participant, nor did I intentionally collaborate with anyone during the contest. After seeing the comparison, I was surprised to find that the solutions are extremely similar. I understand why this raises concerns, but I genuinely do not know how such a similarity occurred. The code I submitted was written by me while solving the problem independently. I don't even know the guy who has the similar code. I request you to please look inyo this

»
3 месяца назад, скрыть # |
Rev. 3  
Проголосовать: нравится -15 Проголосовать: не нравится

I just recieved this message:

Your submissions in contest 2236 — Codeforces Round 1103 (Div. 3) were skipped because of a rules violation in one or more submissions for problem 2236F1 — Elections in Saransk (easy version).

I really don't understand what is the problem with my codes, or maybe my submissions, but I am continously getting this. My previous ID was banned with this message and now I am getting this here, please check and tell me what is wrong.

MikeMirzayanov Vladosiya arsen1y dvb1r eyfxrby

»
3 месяца назад, скрыть # |
Rev. 3  
Проголосовать: нравится -15 Проголосовать: не нравится

Just got a message stating —

Attention! Your solution 378429080 for the problem 2236E significantly coincides with solutions killuaxd/378403042, khanayaan7/378429080. Such a coincidence is a clear rules violation. Note that unintentional leakage is also a violation. For example, do not use ideone.com with the default settings (public access to your code). If you have conclusive evidence that a coincidence has occurred due to the use of a common source published before the competition, write a comment to post about the round with all the details. More information can be found at http://codeforces.me/blog/entry/8790. Such violation of the rules may be the reason for blocking your account or other penalties. In case of repeated violations, your account may be blocked.

I want to clarify that killuaxd is my alternate account,which I use to attempt contests whenever I have less time to take part in contest and I used this to participate in the contest Codeforces Round 1103 (Div. 3).Since I didn't have time to attempt another problem, I submitted the same solution on my main account khanayaan7 to maintain my streak. I didn't realize the contest was still ongoing (with 15 minutes remaining), and even if it had not ended, it wouldn't have affected my rating since it was a Div. 3 contest and my main account is rated above 1600. I did not engage in any form of cheating. Going forward, I will participate in contests using my main account only. I sincerely apologize for this ,genuinely didn't realize this was against the rules, but I now understand and will ensure it doesn't happen again. In light of this, I kindly request that the skipped flag be removed from my main account.

MikeMirzayanov Vladosiya arsen1y dvb1r eyfxrby

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I would like to clarify that my solution was written independently.

My submission was submitted before the other participant's submission. I did not have access to the other participant's source code during the contest, nor did I exchange source code with anyone.

I understand that the solutions appear highly similar. However, I solved the problem on my own and implemented the solution independently. I am able to explain the algorithm, the reasoning behind it, and the implementation details if required.

The other participant and I study at the same college and have learned similar algorithms and problem-solving techniques, which may have contributed to similarities in approach. However, I did not collaborate with them during the contest and did not share or receive code.

I performed well in the contest overall (rank 59), and I respectfully request that my case be reviewed individually. I am willing to provide any additional clarification if needed.

Thank you. Codeforces Round 1103 (Div. 3)

»
3 месяца назад, скрыть # |
Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

hi

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Subject: False Positive Plagiarism Flag on Problem 2236D (Brand New Tatar TV Show) Hello Codeforces Team / Contest Coordinators, I received a plagiarism warning stating that my solution for problem 2236D (Brand New Tatar TV Show) matches another user's code. I want to state clearly that I wrote my solution completely independently and did not engage in any cheating. My Submission Link: https://codeforces.me/contest/2236/submission/378398552 Flagged Match Submission Link: https://codeforces.me/contest/2236/submission/378370861 Problem 2236D relies heavily on an exact, step-by-step game state reduction. The core logic dictates a highly specific optimal strategy:Sorting the values or processing frequency from the maximum element downwards.Checking the odd/even frequency of the absolute maximum element to determine the winning strategy rules.Because the problem is deterministic with limited optimal pathways, any standard solution requires an identical sequence: standard array sorting, frequency mapping, and a direct conditional loop. The similarity in code is a pure coincidence driven by the natural, intended mathematical logic of the problem. Also if I have done copying then why I have one wrong submission and also I would have done copying all the question from him and also the nationality of other user is might be different from mine. So consider all this reasons for not doing the Plagiarism.

Please review my case and restore my submission status. Thank you for your time and hard work! Best regards, Darshil_Marvaniya

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Hi everyone, my submission, 378407286, has been skipped for violating some rules, even though I didn't use AI or any cheating methods. Does anyone know why or how I can fix this?

»
3 месяца назад, скрыть # |
Rev. 3  
Проголосовать: нравится 0 Проголосовать: не нравится

nice contest

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Dear Codeforces Team,

I have also received a warning for submitting similar code. I would like to explain that this solution method was genuinely conceived by myself. Many other participants also submitted answers adopting the same idea for this problem. I truly respect Codeforces rules and have no intention of violating them deliberately.

I sincerely ask you to lift this warning, as it has affected my mindset. I still hold a strong passion for programming, fully abide by your platform rules, and I understand the potential issues behind this incident. Thank you very much for your consideration.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Dear Codeforces staff, I receive a notice saying my solution for problem 2236C has high similarity with another user’s code, which leads to a rule‑violation warning. I swear that I finished the whole code entirely on my own without copying, sharing code or cooperating with other contestants. The identical parts are standard public algorithm templates widely available online before this round, not exchanged during the contest. Here are the links to these publicly‑available templates for verification. Please check my submission and remove this violation mark. CF1485A entry: https://www.luogu.com.cn/problem/CF1485A Open the "Editorials" section, and you will find codes that share the exact same core logic: enumerate the number of division operations, add values to reach a multiple of the divisor first, then perform division.