Description:
在三场考试中,有 n n n为选手,现在已知每位选手的第一场和第二场的分数,并且知道若选手 A A A的第一场和第二场的分数都严格大于选手 B B B,则 A A A的第三场的分数一定大于 B B B,以及每场的分数为0~650。求每位选手最后总分的最高排名和最低排名。
n ≤ 500000 n\le50 0000 n≤500000
Solution:
Code:
#include
using namespace std;
#define REP(i,f,t) for(int i=(f),i##_end_=(t);i<=i##_end_;++i)
#define SREP(i,f,t) for(int i=(f),i##_end_=(t);i=i##_end_;--i)
#define ll long long
templateinline bool chkmin(T &x,T y){return x>y?x=y,1:0;}
templateinline bool chkmax(T &x,T y){return xinline void Rd(T &x){
x=0;char c;int f=1;
while((c=getchar())<48)if(c=='-')f=-1;
do x=(x<<1)+(x<<3)+(c^48);
while((c=getchar())>47);
x*=f;
}
const int N=5e5+2,M=655;
int n;
int A[N],B[N];
int sum1[M][M],sum2[M][M];
int main(){
// freopen("coci.in","r",stdin);
// freopen("coci.out","w",stdout);
Rd(n);
REP(i,1,n) {
Rd(A[i]),Rd(B[i]);
sum1[A[i]][B[i]]++;
sum2[A[i]][B[i]]++;
}
REP(i,0,M-5) REP(j,0,M-5){
if(i>0) sum1[i][j]+=sum1[i-1][j];
if(j>0) sum1[i][j]+=sum1[i][j-1];
if(i>0 && j>0) sum1[i][j]-=sum1[i-1][j-1];
}
REP(i,1,n){
int Mx=1+n-sum1[650][B[i]]-sum1[A[i]][650]+sum1[A[i]][B[i]];
int Mn=n-((!A[i] || !B[i])?0:sum1[A[i]-1][B[i]-1]);
if(A[i]==650) Mn-=sum2[0][B[i]];
if(B[i]==650) Mn-=sum2[A[i]][0];
printf("%d %d\n",Mx,Mn);
}
return 0;
}
Description:
一个城市有 n n n个人,编号为0~n-1,其中有 m m m个人是病原体,而每一天,会感染一些人。
感染的规则:若 a , b a,b a,b被感染,则 ( a ⋅ b ) m o d    n (a\cdot b)\mod n (a⋅b)modn也会被感染。
请问第 k k k天被感染的人是哪些。
n ≤ m ≤ 1500 , k ≤ 1 0 18 n\le m\le 1500,k\le 10^{18} n≤m≤1500,k≤1018
Solution:
Code:
#include
using namespace std;
#define REP(i,f,t) for(int i=(f),i##_end_=(t);i<=i##_end_;++i)
#define SREP(i,f,t) for(int i=(f),i##_end_=(t);i=i##_end_;--i)
#define ll long long
templateinline void Rd(T &x){
x=0;char c;
while((c=getchar())<48);
do x=(x<<1)+(x<<3)+(c^48);
while((c=getchar())>47);
}
const int M=1502;
int n,m;
ll q;
int A[M];
struct p60{
int tmp[M],tot;
queueQ;
setS;
set::iterator it;
void solve(){
while(!Q.empty())Q.pop();
REP(i,1,n) Q.push(A[i]),S.insert(A[i]);
q--;
while(q--){
S.clear();
while(!Q.empty()){
int x=Q.front();Q.pop();
REP(i,1,n) {
int res=1ll*x*A[i]%m;
S.insert(res);
}
}
for(it=S.begin();it!=S.end();it++) Q.push(*it);
}
for(it=S.begin();it!=S.end();it++) printf("%d ",*it);
puts("");
}
}p1;
struct pw{
#define S 62
bool mark[S][M];
int dp[2][M];
void solve(){
REP(i,1,n) mark[0][A[i]]=1;
SREP(s,1,S) SREP(i,0,m) SREP(j,0,m) if(mark[s-1][i] && mark[s-1][j]) mark[s][i*j%m]=1;
int cur=0;
dp[cur][1]=1;
SREP(s,0,S) if(q&(1ll<
Description:
在一个二维平面内,有 n n n个矩形的毯子,初始,在格子坐标 ( 0 , 0 ) (0,0) (0,0)处,有一桶油,过时间 t t t后,它会向四周扩散(8个方向),即为一个中心在 ( 0 , 0 ) (0,0) (0,0)的边长为 2 t 2t 2t的正方形。现在有 q q q个询问,对于每个询问求 t i t_i ti时油覆盖的毯子的面积。注意:毯子之间的重叠部分被覆盖也算。
n ≤ 1 0 5 , x , y ≤ 1 0 6 n\le10^5,x,y\le 10^6 n≤105,x,y≤106
Solution:
Code:
#include
using namespace std;
#define REP(i,f,t) for(int i=(f),i##_end_=(t);i<=i##_end_;++i)
#define SREP(i,f,t) for(int i=(f),i##_end_=(t);i=i##_end_;--i)
#define ll long long
templateinline bool chkmin(T &x,T y){return x>y?x=y,1:0;}
templateinline bool chkmax(T &x,T y){return xinline void Rd(T &x){
x=0;char c;int f=1;
while((c=getchar())<48)if(c=='-')f=-1;
do x=(x<<1)+(x<<3)+(c^48);
while((c=getchar())>47);
x*=f;
}
const int N=1e5+2,M=1e6;
int n,m;
struct point{
int x1,y1,x2,y2;
}A[N];
struct p50{
void solve(){
while(m--){
int t;Rd(t);
int X1=-t,Y1=-t,X2=t,Y2=t;
int x1,y1,x2,y2;
ll ans=0;
REP(i,1,n) {
x1=max(A[i].x1,X1);
y1=max(A[i].y1,Y1);
x2=min(A[i].x2,X2);
y2=min(A[i].y2,Y2);
if(x1<=x2 && y1<=y2) ans+=1ll*(x2-x1+1)*(y2-y1+1);
}
printf("%lld\n",ans);
}
}
}p1;
struct p100{
struct f{
ll b,k;
};
vectorF[M+5];
ll ans[M+5];
void Line(int x,int y,int top){
if(x