Technology Tree

简介: Technology Tree

解题思路:

运用结构体解题,将晶体矿和高能瓦斯的数量分别放在两个数组里。再根据第i个(1≤i<n)正整数fi(1≤fi<i)表示建筑i+1的前置建筑为fi,将数组里的数进行求和即可。

注意题目中说道,在科技树中,只有一个建筑是不需要前置建筑的,我们把这个建筑的编号设为1。其他的建筑,有且仅有一个前置建筑。因此我们应该注意 下标问题……(即注意i,j,f,x的关系)

另外还要注意,这一个测试用例里面有3个循环……

#include<stdio.h>
#include<string.h>
typedef struct
{
    int jing;
    int gao;
}construction;
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        int n,q;
        construction con[20000];
        scanf("%d %d",&n,&q);
        for(int i = 1;i <= n;i++)//从1开始!!
        {
            scanf("%d",&con[i].jing);
            scanf("%d",&con[i].gao);
        }
        for(int j = 2;j <= n;j++)//从2开始!!
        {
            int f;
            scanf("%d",&f);
            con[j].jing += con[f].jing;
            con[j].gao += con[f].gao;
        }
        while(q--)
        {
            int x;
            scanf("%d",&x);
            printf("%d %d\n",con[x].jing,con[x].gao);
        }
    }
    return 0;
}
PS:结构体 举个例子……
#include <stdio.h>
#include <string.h>
typedef struct
{
    char name[100];
    int age;
}student;
int main()
{
    student stu[10];
    char name[] = "feifei";
    strcpy(stu[0].name,name);
    printf("%s",stu[0].name);//第一种,字符类型
    stu[0].age = 100;
    stu[1].age = 120;
    printf("%d %d",stu[0].age,stu[1].age);//第二种,整数类型
  student stu[3];
    for(int i = 0;i < 3;i++)
    {
        scanf("%s",stu[i].name);
        scanf("%d",&stu[i].age);
        printf("%s %d\n",stu[i].name,stu[i].age);//第三种,两种类型同时出现
    }
    return 0;
}


目录
打赏
0
0
0
0
172
分享
相关文章
《Sora: A Review on Background, Technology, Limitations...》--Science and Technology - Reading Notes
《Sora: A Review on Background, Technology, Limitations...》--Science and Technology - Reading Notes
66 0
读书笔记系列 - Operating Systems: Three Easy Pieces - Virtualization - Chapter 4: Processes
读书笔记系列 - Operating Systems: Three Easy Pieces - Virtualization - Chapter 4: Processes
122 0
读书笔记系列 - Operating Systems: Three Easy Pieces - Virtualization - Chapter 4: Processes
译|Design patterns for container-based distributed systems(下)
译|Design patterns for container-based distributed systems(下)
122 0
Efficiently Compiling Efficient Query Plans for Modern Hardware 论文解读
这应该是SQL查询编译的一篇经典文章了,作者是著名的Thomas Neumann,主要讲解了TUM的HyPer数据库中对于CodeGen的应用。 在morsel-driven那篇paper 中,介绍了HyPer的整个执行框架,会以task为单位处理一个morsel的数据,而执行的处理逻辑(一个pipeline job)就被编译为一个函数。这篇paper则具体讲如何实现动态编译。
481 0
Efficiently Compiling Efficient Query Plans for Modern Hardware 论文解读
6 Major Changes in Science and Technology Reshaping the Retail Industry
As the transformation of the retail industry deepens, consumers are now at the center of the entire industry ecosystem.
3848 0
6 Major Changes in Science and Technology Reshaping the Retail Industry
Beyond Bitcoins - How Blockchain Technology Can Transform Businesses
Blockchain - the technology behind the virtual currency bitcoin - might sound new to you today, but it has all the potential to transform your world o
2497 0
Decision Tree
①Aggregation Model 回顾上一篇文章讲到的聚合模型,三个臭皮匠顶一个诸葛亮。于是出现了blending,bagging,boost,stacking。
854 0
Reading《Practical lessons from predicting clicks on Ads at Facebook》(1)
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sinat_32502811/article/details/80794980 因为在做京东的算法大赛,小白选手,看了一些别人的入门级程序,胡乱改了一通,也没有什么大的进展,而且感觉比赛的问题和点击率预估还是有点像的,所以搜了个论文来读,看看牛人们的思路。
2294 0

热门文章

最新文章

AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等