钟神赛车 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void f(int *a,int begin,int end){ if(begin >= end) return; int l …… 题解列表 2019年01月20日 0 点赞 0 评论 318 浏览 评分:0.0
题解 1393: 钟神赛车 摘要:解题思路:意思好激烈,将后面的一组数组按从大到小排列然后比较大小就可注意事项:参考代码:#include<stdio.h>int main(){ int n; while(scanf("%d",&n)…… 题解列表 2021年10月16日 0 点赞 0 评论 143 浏览 评分:0.0
钟神赛车 (C++代码) 摘要:将输入的数据由小到大排序一遍,将钟神的速度最慢的和某君速度最快的相比,然后再按照速度 由小到大让两人直接相比即可。 #include"bits/stdc++.h" using namespa…… 题解列表 2018年06月14日 3 点赞 2 评论 544 浏览 评分:0.0
钟神赛车 (C语言代码) 摘要:解题思路:先为两组数排序。a数组从高到低,b数组从低到高。为每个b数组的数字寻找最理想的a数组中的对应数字。即大于a数组中能大于的最大数字就是胜利win++,并将a数组数字改为-1,避免重复,如果没有…… 题解列表 2019年05月26日 0 点赞 0 评论 393 浏览 评分:0.0
题解 1393: 钟神赛车笑死,漏洞这也行,正确理解 摘要:解题思路:“假设钟神体力无限无损耗求钟神最多能挣多少钱”这句话很关键,说明钟神不会输钱,只会打平和挣钱这两种。注意事项:参考代码:#include <stdio.h>int main(){ int a…… 题解列表 2021年12月11日 0 点赞 0 评论 264 浏览 评分:0.0
钟神赛车 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main (){ int n; while(…… 题解列表 2017年08月26日 0 点赞 0 评论 992 浏览 评分:2.0
钟神赛车 (C语言代码) 摘要:#include <stdio.h>#define M 1000int main(){ int n; int a[M],b[M]; int i,j,t,k; int value,win,lose,ma…… 题解列表 2017年08月19日 1 点赞 0 评论 1063 浏览 评分:4.0
钟神赛车 (C++代码)容易理解 可AC 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int main(){ int n;…… 题解列表 2018年08月06日 3 点赞 1 评论 368 浏览 评分:4.0
钟神赛车 (C++代码)(标准题解)(与田忌赛马类似) 摘要:这题的题解是转自网上博客 是最标准的答案 (1)先比较两者的好马,如果田忌的好马可以赢过齐王的好马,果断去比,高手过招,赢了才更有满 足感,自豪感嘛! …… 题解列表 2017年11月28日 9 点赞 0 评论 2055 浏览 评分:6.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[1000],n,i,j,money; while(scanf("%d",&n)!=…… 题解列表 2017年12月19日 1 点赞 3 评论 815 浏览 评分:7.3