Codeforces1603 B. Moderate Modular Mode(数学)
Posted live4m
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces1603 B. Moderate Modular Mode(数学)相关的知识,希望对你有一定的参考价值。
题意:
解法:
n
%
x
=
y
%
n
优
先
考
虑
结
果
为
特
殊
值
,
如
0
和
y
.
n
%
x
=
y
%
n
=
0
,
当
x
=
=
y
时
,
n
取
x
成
立
.
n
%
x
=
y
%
n
=
y
,
当
x
>
y
时
,
n
取
x
+
y
成
立
.
接
下
来
考
虑
x
<
y
的
情
况
:
这
题
有
两
个
结
论
:
1.
n
不
能
<
x
:
否
则
n
%
x
=
n
,
此
时
y
%
n
=
n
不
可
能
成
立
.
2.
n
不
能
>
y
:
否
则
y
%
n
=
y
,
此
时
n
%
x
=
y
,
那
么
一
定
有
x
>
y
,
与
当
前
条
件
冲
突
.
综
上
:
n
在
x
和
y
之
间
.
画
图
:
0
开
始
以
步
长
x
开
始
跳
,
但
不
跳
过
y
,
设
最
后
的
位
置
为
p
.
要
使
得
n
%
x
=
y
%
n
,
取
n
为
p
和
y
的
中
点
即
可
.
n\\%x=y\\%n\\\\ 优先考虑结果为特殊值,如0和y.\\\\ n\\%x=y\\%n=0,当x==y时,n取x成立.\\\\ n\\%x=y\\%n=y,当x>y时,n取x+y成立.\\\\ 接下来考虑x<y的情况:\\\\ 这题有两个结论:\\\\ 1.n不能<x:\\\\ 否则n\\%x=n,此时y\\%n=n不可能成立.\\\\ 2.n不能>y:\\\\ 否则y\\%n=y,此时n\\%x=y,那么一定有x>y,与当前条件冲突.\\\\ 综上:n在x和y之间.\\\\ 画图:\\\\ 0开始以步长x开始跳,但不跳过y,设最后的位置为p.\\\\ 要使得n\\%x=y\\%n,取n为p和y的中点即可.
n%x=y%n优先考虑结果为特殊值,如0和y.n%x=y%n=0,当x==y时,n取x成立.n%x=y%n=y,当x>y时,n取x+y成立.接下来考虑x<y的情况:这题有两个结论:1.n不能<x:否则n%x=n,此时y%n=n不可能成立.2.n不能>y:否则y%n=y,此时n%x=y,那么一定有x>y,与当前条件冲突.综上:n在x和y之间.画图:0开始以步长x开始跳,但不跳过y,设最后的位置为p.要使得n%x=y%n,取n为p和y的中点即可.
code:
#include<bits/stdc++.h>
// #define SYNC_OFF
#define int long long
#define ll long long
#define ull unsigned long long
//fast-coding
#define ST(x) x.begin()
#define ED(x) x.end()
#define RST(x) x.rbegin()
#define RED(x) x.end()
#define CL(x) x.clear();
#define all(a,n) a+1,a+1+n
#define ff(i,n) for(ll i=1;i<=n;i++)
#define rff(i,n) for(ll i=n;i>=1;i--)
#define fff(i,n) for(ll i=0;i<n;i++)
#define rfff(i,n) for(ll i=n-1;i>=0;i--)
#define SC(x) scanf("%s",x)
#define SL(x) strlen(x)
#define pss(a) push_back(a)
#define ps(a) push(a)
#define SZ(x) (int)x.size()
#define pee puts("");
#define eee putchar(' ');
#define re readdd()
#define pr(a) printtt(a)
int readdd(){int x=0,f=1;char c=getchar();//
while(!isdigit(c)&&c!='-')c=getchar();
if(c=='-')f=-1,c=getchar();
while(isdigit(c))x=x*10+c-'0',c=getchar();
return f*x;}
void printtt(int x){if(x<0)putchar('-'),x=-x;//
if(x>=10)printtt(x/10);putchar(x%10+'0');}
int gcd(int a,int b){return b==0?a:gcd(b,a%b);}//
int ppow(int a,int b,int mod){a%=mod;//
int ans=1%mod;while(b){if(b&1)ans=(long long)ans*a%mod;
a=(long long)a*a%mod;b>>=1;}return ans;}
bool addd(int a,int b){return a>b;}
int lowbit(int x){return x&-x;}
const int dx[4]={0,0,1,-1};
const int dy[4]={1,-1,0,0};
bool isdigit(char c){return c>='0'&&c<='9';}
bool Isprime(int x){
for(int i=2;i*i<=x;i++)if(x%i==0)return 0;
return 1;
}
void ac(int x){if(x)puts("YES");else puts("NO");}
//short_type
#define VE vector<int>
#define PI pair<int,int>
//
using namespace std;
// const int mod=998244353;
const int mod=1e9+7;
const int maxm=2e6+5;
const int inv2=ppow(2,mod-2,mod);
int x,y;
void solve(){
x=re,y=re;
if(x>y){
pr(x+y);pee;return ;
}
if(x==y){
pr(x);pee;return ;
}
//x<y
int p=y-y%x;
int n=p+(y-p)/2;
pr(n);pee;
}
void Main(){
#define MULTI_CASE
#ifdef MULTI_CASE
int T;cin>>T;while(T--)
#endif
solve();
}
void Init(){
#ifdef SYNC_OFF
ios::sync_with_stdio(0);cin.tie(0);
#endif
#ifndef ONLINE_JUDGE
freopen("../in.txt","r",stdin);
freopen("../out.txt","w",stdout);
#endif
}
signed main(){
Init();
Main();
return 0;
}
以上是关于Codeforces1603 B. Moderate Modular Mode(数学)的主要内容,如果未能解决你的问题,请参考以下文章
codeforces 655B B. Mischievous Mess Makers(贪心)
codeforces 653B B. Bear and Compressing(dfs)
Codeforces Round #352 (Div. 2) B. Different is Good
CodeForces B. Obtaining the String
Codeforces 1099 B. Squares and Segments-思维(Codeforces Round #530 (Div. 2))