题解 1393: 钟神赛车

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

筛选

钟神赛车 (C语言代码)

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

题解 1393: 钟神赛车

摘要:解题思路:意思好激烈,将后面的一组数组按从大到小排列然后比较大小就可注意事项:参考代码:#include<stdio.h>int main(){ int n; while(scanf("%d",&n)……

钟神赛车 (C++代码)

摘要:将输入的数据由小到大排序一遍,将钟神的速度最慢的和某君速度最快的相比,然后再按照速度 由小到大让两人直接相比即可。 #include"bits/stdc++.h" using namespa……

钟神赛车 (C语言代码)

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

钟神赛车 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main (){ int n; while(……

我美吗!

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