存一下代码
A. Alternative Architecture
就是算一下斜边一定下的直角三角形个数,需要注意的是斜边并不是
AC代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
::sync_with_stdio(false);
ios,b;
ll a>>a>>b;
cinif(a>b)
(a,b);
swap-=1,b-=1;
a=0;
ll cntfor(ll i=1;i<a;i++)
{
if(b*i%a!=0)
continue;
=sqrt(a*a-i*i);
ll sif(s*s+i*i==a*a)
{
if(s*b%a==0)
++;
cnt}
}
if(a==b)
<<cnt+1<<'\n';
coutelse
<<cnt*2+2<<'\n';
coutreturn 0;
}
C. Chaotic Construction
只需查看两个方向上是否有障碍物即可,直接查询复杂度会爆,用树状数组优化
AC代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define lowbit(x) ((x) & (-(x)))
const int N=2e5+5;
int n;
int tree[N];
void update(int x,int d)
{
while(x<=n)
{
[x]+=d;
tree+=lowbit(x);
x}
}
int sum(int x)
{
int ans=0;
while(x>0)
{
+=tree[x];
ans-=lowbit(x);
x}
return ans;
}
int main() {
::sync_with_stdio(false);
iosint q;
>>n>>q;
cin(tree,0,sizeof(tree));
memsetfor(int i=1;i<=q;i++)
{
char op;
int a;
>>op>>a;
cinif(op=='-')
(a,1);
updateelse if(op=='+')
(a,-1);
updateelse if(op=='?')
{
int b;
>>b;
cinif(a>b)
(a,b);
swapif((sum(a)==0&&(sum(n)-sum(b-1)==0))||sum(b)-sum(a-1)==0)
<<"possible"<<'\n';
coutelse
<<"impossible"<<'\n';
cout}
}
return 0;
}
E. Enjoyable Entree
用特征方程可以直接解出来
AC代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
::sync_with_stdio(false);
ios;
ll n("%ld",&n);
scanflong double ans2=4.0/3*pow(-0.5,n)+2.0/3;
("%Lf %Lf\n",(1-ans2)*100,ans2*100);
printfreturn 0;
}
I. Improving IT
如果将
记忆化搜索即可,复杂度为
AC代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=5e6;
int n,m;
int arc[N];
[N];
ll dpint num(int x,int y)
{
return x*(m+2)+y;
}
int main() {
::sync_with_stdio(false);
ios>>n>>m;
cin(arc,-1,sizeof(arc));
memsetfor(int i=1;i<=n;i++)
{
int c;
>>c;
cinfor(int j=1;j<=min(m,n+1-i);j++)
{
int cj;
>>cj;
cin[num(i,j)]=c-cj;
arc}
}
for(int i=1;i<=n+1;i++)
[i]=LONG_LONG_MAX;
dp[0]=dp[1]=0;
dpfor(int i=1;i<=n+1;i++)
{
for(int j=max(1,i-m);j<i;j++)
{
[i]=min(dp[i],dp[j]+arc[num(j,i-j)]);
dp}
}
<<dp[n+1]<<'\n';
coutreturn 0;
}
K. K.O. Kids
一个模拟
AC代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
::sync_with_stdio(false);
iosint n,k;
>>n>>k;
cin;
string s>>s;
cinint i=0;
int cnt=0;
int op=0;
while(i<s.length())
{
if(op==0)
{
if(s[i]=='L')
++;
ielse
{
++;
i++;
cnt=(op+1)%2;
op}
}
else
{
if(s[i]=='R')
++;
ielse
{
++;
i++;
cnt=(op+1)%2;
op}
}
=(op+1)%2;
op}
<<max(0,k-cnt)<<'\n';
coutreturn 0;
}
L. Lots of Land
可以看出有解的话每一块的面积
并且
如果
AC代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=105;
char ch[N][N];
int main() {
::sync_with_stdio(false);
iosint l,w,n;
>>l>>w>>n;
cinif(l*w%n!=0)
<<"impossible"<<'\n';
coutelse
{
int s=l*w/n;
int x=1,y=1;
for(int i=1;i<=s;i++)
{
if(s%i!=0)
continue;
if(l%i==0&&w%(s/i)==0)
{
=i,y=s/i;
xbreak;
}
}
char c='A';
//cout<<x<<' '<<y<<'\n';
for(int i=0;i<l;i++)
{
for(int j=0;j<w;j++)
{
[i][j]=c+j/y;
ch}
if((i+1)%x==0)
+=w/y;
c}
for(int i=0;i<l;i++)
{
for(int j=0;j<w;j++)
<<ch[i][j];
cout<<'\n';
cout}
}
return 0;
}