解题思路:
看了题解在做的题目,完全摸不着头绪,最后得到 数目 = 左边右走的+右边左走的;
大概模拟了下,发现病蚂蚁并不是 左边右走的所有蚂蚁,这类题估计要想出模拟状态
注意事项:
参考代码:
#include<iostream>
#include<sstream>
#include<cstring>
#include<cmath>
#include<string>
#include<algorithm>
#include <cmath>
#include <cstdio>
using namespace std;
const int maxn = 50;
int a[maxn];
bool cmp(int a,int b);
int coun(int *ant,int jud, int n);
int main(){
int n;
cin >> n;
for(int i = 0; i < n; i++){
cin >> a[i];
}
int bi = a[0];
sort(a,a+n,cmp);
printf("%d\n",coun(a,bi,n));
return 0;
}
int coun(int *ant,int jud, int n){
int num = 0;
int cnt = find(ant,ant+n,jud) - ant;
for(int i = 0; i < cnt; i++){
if(ant[i] > 0) num++;
}
for(int i = cnt+1; i < n; i++){
if(ant[i] < 0) num++;
}
return num+1;
}
bool cmp(int a,int b){
return abs(a) < abs(b);
}
0.0分
0 人评分
妹子杀手的故事 (C语言代码)浏览:737 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
字符串问题 (C语言代码)浏览:1634 |
数组输出 (C语言代码)错误???浏览:602 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:1052 |
C语言训练-数字母 (C语言代码)浏览:670 |
本人酷爱递归实现很多问题,这里也是浏览:632 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:818 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:366 |
1011题解浏览:819 |