博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【PAT】A1002 A+B for Polynomials
阅读量:5328 次
发布时间:2019-06-14

本文共 723 字,大约阅读时间需要 2 分钟。

简单的模拟问题,按照题意一步一步写就好

只要stl用的熟练,这道题非常简单,实在不建议用纯C,这道题就是一个好例子。

#include
#include
#include
using namespace std;int main(){ float coefficients[1001]={0}; int N; cin >> N; set
s; for(int i=0;i
> temp; cin >> coefficients[temp]; s.insert(temp); } cin >> N; for(int i=0;i
> temp; float temp1; cin >> temp1; coefficients[temp]+=temp1; if(coefficients[temp]==0) s.erase(temp); else s.insert(temp); } printf("%d",s.size()); for(int i=1000;i>=0;i--){ if(coefficients[i]!=0) printf(" %d %.1f",i,coefficients[i]); } return 0;}

转载于:https://www.cnblogs.com/hebust/p/9870018.html

你可能感兴趣的文章
用 new 还是用 alloc/init
查看>>
php中url传递中文字符,特殊危险字符的解决方法
查看>>
linux服务器之LVS、Nginx和HAProxy负载均衡器对比
查看>>
with语句
查看>>
T人声鼎沸
查看>>
高并发一些处理办法
查看>>
单例模式的使用
查看>>
python中的函数
查看>>
配置tomcat虚拟机
查看>>
Python中append()与extend()的区别
查看>>
404 Note Found 队-Alpha9
查看>>
javascript 中==和===的区别
查看>>
bzoj 1610 连线游戏
查看>>
linux双机热备份
查看>>
Python编程-继承和接口
查看>>
解析json对象出现$ref: "$.list[0]"的解决办法
查看>>
LeetCode--Longest Common Prefix
查看>>
设计模式-12-命令模式
查看>>
lock condition
查看>>
Leetcode 372.超级次方
查看>>