题解 1393: 钟神赛车

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

筛选

钟神赛车-题解(C++代码)

摘要:这个题用到了田忌赛马的思想,具体思想是:用最小的跟对方最大的比较,然后用最大的跟对方第二大的比较,最后用第二大的跟对方最小的比较,例如题中对手是2 1 3,我们是2 2 3,那就要先用2 把对面的3 ……

钟神赛车 (Java代码)

摘要:解题思路:注意事项:参考代码:public class 钟神赛车_水到不能再水 { public static void main(String[] args) { // TODO Auto-gen……

题解 1393: 钟神赛车

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

钟神赛车 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n[100],i,j=0,a[100][100],b[100][100]; while(~s……

钟神赛车 (C语言代码)

摘要:解题思路:将输入的数据由小到大排序,将钟神的速度最慢的和某君速度最快的相比,然后再按照速度由小到大让两人直接相比,即b[1]与a[0]比,b[2]与a[1]比,b[3]与a[2]比,...,b[n-1……

钟神赛车 (C语言代码)

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

钟神赛车 (C语言代码)

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