hdu1002

A + B Problem II

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 100391    Accepted Submission(s): 19038


Problem Description
I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.
 

Input
The first line of the input contains an integer T(1<=T<=20) which means the number of test cases. Then T lines follow, each line consists of two positive integers, A and B. Notice that the integers are very large, that means you should not process them by using 32-bit integer. You may assume the length of each integer will not exceed 1000.
 

Output
For each test case, you should output two lines. The first line is "Case #:", # means the number of the test case. The second line is the an equation "A + B = Sum", Sum means the result of A + B. Note there are some spaces int the equation. Output a blank line between two test cases.
 

Sample Input
2 1 2 112233445566778899 998877665544332211
 

Sample Output
Case 1: 1 + 2 = 3 Case 2: 112233445566778899 + 998877665544332211 = 1111111111111111110
 

#include<iostream>
#include<string.h>
#include<stdio.h>
using namespace std;
char a[1000+10];
char b[1000+10];
int  convert(char *p)
{
    int len=strlen(p);
    int j=len-1;
    int i=0;
    while(i<j)
    {
        char temp=p[i];
        p[i]=p[j];
        p[j]=temp;
        i++;j--;
    }
    return len;
}
void cal(char *p,char *q,int lena,int lenb)
{
    int lenc=max(lenb,lena);
    if(lena<=lenb)
    {
        for(int i=lena;i<=lenb;i++)
        {
            p[i]=q[i];
        }
        for(int i=0;i<lena;i++)
        {
            p[i]+=q[i]-'0';
        }
    }
    else
    {
        for(int i=0;i<lenb;i++)
        {
            p[i]+=q[i]-'0';
        }
    }
    for(int i=0;i<lenc-1;i++)
    {
        p[i+1]+=(p[i]-'0')/10;
        p[i]=(p[i]-'0')%10+'0';
    }
    cout<<int(p[lenc-1]-'0');
    for(int i=lenc-2;i>=0;i--)
    {
        cout<<p[i];
    }
    cout<<endl;
}
int main()
{
    int n;
    cin>>n;
    for(int i=1;i<=n;i++)
    {
        memset(a,'0',sizeof(a));
        memset(b,'0',sizeof(b));
        scanf("%s%s",a,b);
        printf("Case %d:\n",i);
        cout<<a<<" + "<<b<<" = ";
        int lena=convert(a);
        int lenb=convert(b);
        cal(a,b,lena,lenb);
        if(i!=n)cout<<endl;
    }
    return 0;
}




基于NSGA-III算法求解微电网多目标优化调度研究(Matlab代码实现)内容概要:本文围绕基于NSGA-III算法的微电网多目标优化调度展开研究,重点介绍了如何利用该先进多目标进化算法解决微电网系统中多个相互冲突的目标(如运行成本最小化、碳排放最低、供电可靠性最高等)的协同优化问题。文中结合Matlab代码实现,详细阐述了NSGA-III算法的基本原理、在微电网调度模型中的建模过程、约束条件处理、目标函数设计以及仿真结果分析,展示了其相较于传统优化方法在求解高维、非线性、多目标问题上的优越性。同时,文档还提供了丰富的相关研究案例和技术支持背景,涵盖电力系统优化、智能算法应用及Matlab仿真等多个方面。; 适合人群:具备一定电力系统基础知识和Matlab编程能力的研究生、科研人员及从事能源优化领域的工程技术人员;尤其适合正在进行微电网调度、多目标优化算法研究或撰写相关论文的研究者。; 使用场景及目标:①掌握NSGA-III算法的核心思想及其在复杂能源系统优化中的应用方式;②学习如何构建微电网多目标调度模型并利用Matlab进行仿真求解;③为科研项目、毕业论文或实际工程提供算法实现参考和技术支撑。; 阅读建议:建议读者结合文中提供的Matlab代码实例,逐步调试运行并深入理解算法流程与模型构建细节,同时可参考文档中列出的其他优化案例进行横向对比学习,以提升综合应用能力。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值