题解 1393: 钟神赛车

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

钟神赛车 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>  void pai(int  *a,int n){ int i,j,x; for(i=1;i<=n;i++) { for(j=0;j……

钟神赛车 (C++代码)

摘要:解题思路:田忌赛马的想法,把两个人的速度大小排序,i从零开始,用p[i]和q[i-1]比较,最后用p[0]和q[n-1]比较,比较过程中进行计数,最后*50输出计数结果。参考代码:#include<i……

我美吗!

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {  int a[1000],n,i,j,money;  while(scanf("%d",&n)!=……

钟神赛车 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>void f(int *a,int begin,int end){ if(begin >= end)  return;  int l ……

钟神赛车 (C语言代码)

摘要:解题思路:先为两组数排序。a数组从高到低,b数组从低到高。为每个b数组的数字寻找最理想的a数组中的对应数字。即大于a数组中能大于的最大数字就是胜利win++,并将a数组数字改为-1,避免重复,如果没有……

钟神赛车 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <string.h>int main(){ int a[100],i,j,n,t,s=0; while(scanf("%d",&n)!=EOF) {  ……