CCF_201403-1_相反数
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201403-1_相反数相关的知识,希望对你有一定的参考价值。
按绝对值排序,因为没相同的数,直接遍历比较一遍即可。
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int fun(int x) { return x>0?x:-x; } bool cmp(int a,int b) { return fun(a)<fun(b); } int main() { int n,a[505]; cin >> n; for(int i = 1;i <= n;i++) { cin >> a[i]; } sort(a+1,a+n+1,cmp); int num = 0; for(int i = 1;i < n;i++) { if(fun(a[i]) == fun(a[i+1])) { num++; i++; } } cout << num << endl; return 0; }
以上是关于CCF_201403-1_相反数的主要内容,如果未能解决你的问题,请参考以下文章