2022牛客(6)题解

目录

G Icon Design

J Number Game

B Eezie and Pie


G Icon Design

题目大意:根据要求打印不同图案.

思路:注意到n范围比较小,直接打表.

#include<bits/stdc++.h>
using namespace std;
template <typename tn>void read(tn &n){
    tn f=1,t=0;char ch=getchar();
    while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}
    while (isdigit(ch)) t=t*10+ch-'0',ch=getchar();
    n=f*t;
}
inline void out(int x){
    if(x>9)out(x/10);
    putchar(x%10+'0');
}
int n;
int main(){
    read(n);
    if(n==1){
        cout<<"********************************"<<endl;
        cout<<"*..............................*"<<endl;
        cout<<"*..@...@..@@@@@..@......@@@@@..*"<<endl;
        cout<<"*..@@..@..@......@......@......*"<<endl;
        cout<<"*..@.@.@..@@@@@..@......@@@@@..*"<<endl;
        cout<<"*..@..@@..@......@..........@..*"<<endl;
        cout<<"*..@...@..@......@@@@@..@@@@@..*"<<endl;
        cout<<"*..............................*"<<endl;
        cout<<"********************************"<<endl; 
    }
    if(n==2){
        cout<<"*********************************************"<<endl;
        cout<<"*...........................................*"<<endl;
        cout<<"*...........................................*"<<endl;
        cout<<"*...@.....@...@@@@@@@...@.........@@@@@@@...*"<<endl;
        cout<<"*...@@....@...@.........@.........@.........*"<<endl;
        cout<<"*...@.@...@...@.........@.........@.........*"<<endl;
        cout<<"*...@..@..@...@@@@@@@...@.........@@@@@@@...*"<<endl;
        cout<<"*...@...@.@...@.........@...............@...*"<<endl;
        cout<<"*...@....@@...@.........@...............@...*"<<endl;
        cout<<"*...@.....@...@.........@@@@@@@...@@@@@@@...*"<<endl;
        cout<<"*...........................................*"<<endl;
        cout<<"*...........................................*"<<endl;
        cout<<"*********************************************"<<endl;    
    }
    if(n==3){
        cout<<"**********************************************************"<<endl;
        cout<<"*........................................................*"<<endl;
        cout<<"*........................................................*"<<endl;
        cout<<"*........................................................*"<<endl;
        cout<<"*....@.......@....@@@@@@@@@....@............@@@@@@@@@....*"<<endl;
        cout<<"*....@@......@....@............@............@............*"<<endl;
        cout<<"*....@.@.....@....@............@............@............*"<<endl;
        cout<<"*....@..@....@....@............@............@............*"<<endl;
        cout<<"*....@...@...@....@@@@@@@@@....@............@@@@@@@@@....*"<<endl;
        cout<<"*....@....@..@....@............@....................@....*"<<endl;
        cout<<"*....@.....@.@....@............@....................@....*"<<endl;
        cout<<"*....@......@@....@............@....................@....*"<<endl;
        cout<<"*....@.......@....@............@@@@@@@@@....@@@@@@@@@....*"<<endl;
        cout<<"*........................................................*"<<endl;
        cout<<"*........................................................*"<<endl;
        cout<<"*........................................................*"<<endl;
        cout<<"**********************************************************"<<endl;
    }
    if(n==4){
        cout<<"***********************************************************************\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....@.........@.....@@@@@@@@@@@.....@...............@@@@@@@@@@@.....*\n";
        cout<<"*.....@@........@.....@...............@...............@...............*\n";
        cout<<"*.....@.@.......@.....@...............@...............@...............*\n";
        cout<<"*.....@..@......@.....@...............@...............@...............*\n";
        cout<<"*.....@...@.....@.....@...............@...............@...............*\n";
        cout<<"*.....@....@....@.....@@@@@@@@@@@.....@...............@@@@@@@@@@@.....*\n";
        cout<<"*.....@.....@...@.....@...............@.........................@.....*\n";
        cout<<"*.....@......@..@.....@...............@.........................@.....*\n";
        cout<<"*.....@.......@.@.....@...............@.........................@.....*\n";
        cout<<"*.....@........@@.....@...............@.........................@.....*\n";
        cout<<"*.....@.........@.....@...............@@@@@@@@@@@.....@@@@@@@@@@@.....*\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....................................................................*\n";
        cout<<"*.....................................................................*\n";
        cout<<"***********************************************************************\n";
    }
    if(n==5){
        cout << "************************************************************************************\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*......@...........@......@@@@@@@@@@@@@......@..................@@@@@@@@@@@@@......*\n";
        cout << "*......@@..........@......@..................@..................@..................*\n";
        cout << "*......@.@.........@......@..................@..................@..................*\n";
        cout << "*......@..@........@......@..................@..................@..................*\n";
        cout << "*......@...@.......@......@..................@..................@..................*\n";
        cout << "*......@....@......@......@..................@..................@..................*\n";
        cout << "*......@.....@.....@......@@@@@@@@@@@@@......@..................@@@@@@@@@@@@@......*\n";
        cout << "*......@......@....@......@..................@..............................@......*\n";
        cout << "*......@.......@...@......@..................@..............................@......*\n";
        cout << "*......@........@..@......@..................@..............................@......*\n";
        cout << "*......@.........@.@......@..................@..............................@......*\n";
        cout << "*......@..........@@......@..................@..............................@......*\n";
        cout << "*......@...........@......@..................@@@@@@@@@@@@@......@@@@@@@@@@@@@......*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "*..................................................................................*\n";
        cout << "************************************************************************************\n";
    }
    return 0;
}

J Number Game

题目大意:给定A,B,C三个数,存在两种操作,1)把B变为A-B.2)把c变为B-C.问是否可以将C变为x.

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> PII;
const int INF=0x3f3f3f3f;
const int mod=1e9+7;
const int N=4e4+10,M=5e5+5;
 
int n,m,k;
ll a,b,c,x;
 
int main(){
    //freopen("data.in","r",stdin);
    ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    int T; cin>>T;
    while(T--) {
        cin>>a>>b>>c>>x;
        ll b1=b,b2=a-b;
        ll t=abs(b1-b2);
        if(b1==b2) {
            if(c==x||b-c==x) {
                cout<<"Yes\n";
            } else {
                cout<<"No\n";
            }
            continue;
        }
        if((x-c)%t==0) {
            cout<<"Yes\n"; continue;
        }
        if((x-(b2-c))%t==0) {
            //printf("%lld %lld\n",(x-(b2-c)),t);
            cout<<"Yes\n"; continue;
        }
        if((x-(b1-c))%t==0) {
            cout<<"Yes\n"; continue;
        }
        cout<<"No\n";
    }
    return 0;
}

B Eezie and Pie

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> PII;
const int INF=0x3f3f3f3f;
const int mod=1e9+7;
const int N=2e6+10,M=1e6+5;
 
int n,m,k;
int h[N],ne[N<<1],ver[N<<1],tot=0;
int dep[N],fa[N][22]; //fa[i][k]表示节点i的上2^k层的祖先是哪个点
int ans[N];
 
 
void add(int x,int y) {
    ver[++tot]=y; ne[tot]=h[x]; h[x]=tot;
}
 
void dfs(int x,int pre) {
    dep[x]=dep[pre]+1;
    fa[x][0]=pre;
    for(int i=1;i<=21;i++)
        fa[x][i]=fa[fa[x][i-1]][i-1];
    for(int i=h[x];i;i=ne[i]) {
        int y=ver[i];
        if(y==pre) continue;
        dfs(y,x);
    }
}
 
int ask(int x,int k) {
    for(int i=0;i<=22;i++) {
        if((k>>i)&1) x=fa[x][i];
    }
    return x;
}
 
void query(int x,int fa) {
    for(int i=h[x];i;i=ne[i]) {
        int y=ver[i];
        if(y==fa) continue;
        query(y,x);
        ans[x]+=ans[y];
    }
}
 
void solve() {
    cin>>n;
    int x,y,d;
    for(int i=2;i<=n;i++) {
        cin>>x>>y;
        add(x,y); add(y,x);
    }
    dfs(1,0);
    for(int i=1;i<=n;i++) {
        cin>>d; y=ask(i,d+1);
        ans[i]++; ans[y]--;
    }
    query(1,0);
    for(int i=1;i<=n;i++) {
        if(i==1) cout<<ans[i];
        else cout<<" "<<ans[i];
    }
}
 
int main(){
    //freopen("data.in","r",stdin);
    ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    int T=1; //cin>>T;
    while(T--) {
        //init();
        solve();
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
牛客 a卷2022年第四季度的华为题目中,要求考生设计一种高效的数据结构,能够支持以下几种操作: 1. 添加一个元素 2. 删除一个元素 3. 查找是否存在某个元素 4. 返回元素的总数 该数据结构要求满足空间复杂度较小、时间复杂度较低、能够快速地进行查找和修改等多种操作。 想要编写这样一种数据结构,我们可以参考许多已有的经典算法与数据结构,如二叉树、哈希表、红黑树等,通过综合利用它们的优点来实现这个问题的解决。 例如,我们可以通过哈希表来存储所有元素的值,并在每个哈希链表的元素中再使用红黑树来进行排序与查找。这样,我们既能够轻松地进行元素的添加和删除操作,也能够在查找较大数据范围和数量时保持较高的速度与效率。同时,由于使用了多个数据结构来协同完成这个问题,我们也能够在空间复杂度上适度地进行优化。 当然,在具体设计这个数据结构的过程中,我们还需要考虑一些实践中的细节问题,例如如何避免哈希冲突、如何处理数据丢失与被删除元素所占用的空间等问题,这都需要相应的算法与流程来进行处理。 总体来看,设计这种支持多种操作的高效数据结构,需要我们具备丰富的算法知识和编程实践能力,同时需要我们在具体处理问题时能够将多种算法和数据结构进行有效地结合。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值