RPdreamer's blog

By RPdreamer, history, 13 months ago, In English
  • Vote: I like it
  • -38
  • Vote: I do not like it

By RPdreamer, history, 13 months ago, In English

Hello. i am a new user in Codeforces and i'm not very clear about the rules of codeforces.

I can see we will have two contests in tomorrow at the same time

Can I participate them both?

(excuse my poor english)

Full text and comments »

  • Vote: I like it
  • -54
  • Vote: I do not like it

By RPdreamer, history, 13 months ago, In English

ban luogu_official.

This guy is so shameless. It has the same format as CF,we can see Div.1 to Div.4 with the same difficulty, it infringes CF's copyright.

I think it was able to reach ninth place in the contribution score rankings because there were a large number of Chinese oier who were mindlessly upvoting.

Mike plz ban him.

Full text and comments »

  • Vote: I like it
  • -82
  • Vote: I do not like it

By RPdreamer, history, 13 months ago, In English

Sir explain the question on the title...

AI is developing rapidly. The ability of AI to solve problems will eventually surpass ours,even tourist. at that time,people will use AI to solve problems instead of we guys.

Full text and comments »

  • Vote: I like it
  • -65
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

Wow! Coder RPdreamer competed in Codeforces Round 1000 (Div. 2) and gained +357 rating points taking place 16002

Share it!

Full text and comments »

  • Vote: I like it
  • -40
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

In order to improve my english I won't use any AI translator to write blogs or comments.

If I use I'll eat shit

Full text and comments »

  • Vote: I like it
  • -39
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

I want to make a vote like this.

Can somebody teach me? Thanks.

(If you teach me I'll upvote all your blogs and comments).

Full text and comments »

  • Vote: I like it
  • -26
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

Hello everybody! I'm going to write a report about the contribution score.

Complex and opaque scoring mechanism

  • Difficult to accurately grasp:The calculation method of the contribution score is rather complex, and the official has not provided a very clear and detailed explanation. It depends on the "response" of the blogs written by users and the comments made on other blogs. However, the specific weights and algorithms are unclear. Users have difficulty knowing exactly how to increase their contribution scores, nor do they know how much impact their actions will have on the contribution scores.
  • Subject to subjective factors:The contribution score is highly dependent on the voting of other users. User voting is highly subjective. Due to personal preferences, differences in opinions, etc., a blog or comment with good content quality may receive a low score, and vice versa. As a result, the contribution score cannot accurately reflect the actual contribution of users.

    Limited demonstration of user ability

  • Does not reflect algorithmic level:Codeforces is mainly an algorithmic competition platform. The core abilities of users are reflected in aspects such as algorithm design, code implementation, and the speed of problem — solving. The contribution score has no direct relation to these core abilities and cannot intuitively reflect the algorithmic programming level of users. For example, a user with a high contribution score may not perform well in algorithmic competitions, and conversely, a user with strong algorithmic abilities may have a low contribution score.
  • Unrelated to competition results:In Codeforces competitions, what determines the ranking and rewards is the performance in solving problems, time used, and Hacking during the competition. These have no direct relation to the contribution score. The competition ranking and the change in Rating are the direct manifestations of the strength of contestants in the competition and are more closely watched.
  • As a student,our main goal is to improve CP ability but not socializing.

    Indirect influence on the community

  • Not the only indicator of community activity:Although the contribution score can reflect the user's activity level and degree of recognition in the community to a certain extent, it is not the only indicator. Users can build their reputation in the community by actively participating in discussions, sharing high — quality code and problem — solving ideas. Even if the contribution score is low, they may still become respected and influential members in the community.
  • Difficult to convert into practical value:A high contribution score does not necessarily bring practical benefits to users, such as priority participation in competitions, access to special resources or permissions. Unlike in some other communities, a high contribution value may bring more privileges or benefits.

What I want to express from this post is:

  • Ignore your contribution score,don't metion downvotes,say whatever you like.

  • Improve your CP ability instead of doing nonsense.

Full text and comments »

  • Vote: I like it
  • -46
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

can somebody tell me how to reach pupil,I tried very hard but can't even AC a *800 problem in div.2

thanks.

Full text and comments »

  • Vote: I like it
  • -22
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

the contributor list said my contribution score is -65,but my profile said my score is -66.

what's wrong

Full text and comments »

  • Vote: I like it
  • -37
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

I don't think brute force should be an algorithm tag.

Full text and comments »

  • Vote: I like it
  • -24
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English

I tried @tourist ,but it didn't work.

upd:i asked gpt but it still didn't work.can somebody give me the markdown?i'll be very thankful

Full text and comments »

  • Vote: I like it
  • -28
  • Vote: I do not like it

By RPdreamer, history, 14 months ago, In English
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N=2E5+5,MOD=1LL<<32;struct tree{int l,r,sum,lcm;}t[N<<2];int a[N];int lcm(int x,int y){return x/__gcd(x,y)*y;}void pushup(int u){int l=u<<1,r=u<<1|1;t[u].sum=(t[l].sum+t[r].sum)%MOD;t[u].lcm=lcm(t[l].lcm,t[r].lcm);}void build(int u,int l,int r){t[u].l=l,t[u].r=r;if(l==r){t[u].sum=t[u].lcm=a[l];return;}int mid=(l+r)>>1;build(u<<1,l,mid);build(u<<1|1,mid+1,r);pushup(u);return;}void update(int u,int l,int r,int x){if(x%t[u].lcm==0)return;if(t[u].l==t[u].r){t[u].sum=t[u].lcm=__gcd(t[u].sum,x);return;}int mid=(t[u].l+t[u].r)>>1;if(l<=mid)update(u<<1,l,r,x);if(r>mid)update(u<<1|1,l,r,x);pushup(u);return;}int query(int u,int l,int r){if(l<=t[u].l&&t[u].r<=r)return t[u].sum;int mid=(t[u].l+t[u].r)>>1,ans=0;if(l<=mid)ans=(ans+query(u<<1,l,r))%MOD;if(r>mid)ans=(ans+query(u<<1|1,l,r))%MOD;return ans;}signed main(){int n,m,op,l,r,x;cin>>n>>m;for(int i=1;i<=n;++i)cin>>a[i];build(1,1,n);while(m--){cin>>op>>l>>r;if(op==1){cin>>x;update(1,l,r,x);}else{cout<<query(1,l,r)<<endl;}}return 0;}

Full text and comments »

  • Vote: I like it
  • -39
  • Vote: I do not like it

By RPdreamer, history, 15 months ago, In English

qp and orz have the same meanings.

but why people who send orz usually get upvotes:

![](/predownloaded/dc/b2/dcb213a6343a31ca5de7219ee7cafce08fd193d8.png)

and people who send qp always get downvotes.

upd: Gramma Error found in the title(excuse my poor grammar)

Full text and comments »

  • Vote: I like it
  • -33
  • Vote: I do not like it

By RPdreamer, history, 15 months ago, In English

rt.His contribution score is +250,much higher than +169.

Full text and comments »

  • Vote: I like it
  • -10
  • Vote: I do not like it