HDU 6095: Rikka with Competition
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 6095: Rikka with Competition相关的知识,希望对你有一定的参考价值。
Rikka with Competition
///@author Sycamore ///@date 8/8/2017 #include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); int t; cin >> t; while (t--) { int n, k; cin >> n >> k; vector<int>v(n); for (auto &e : v)cin >> e; int cnt = 1; sort(v.begin(), v.end()); for (int i = n - 1; i>0; i--) { if (v[i] - v[i - 1] <= k)cnt++; else break; } cout << cnt << endl; } return 0; }
以上是关于HDU 6095: Rikka with Competition的主要内容,如果未能解决你的问题,请参考以下文章