首页 > 代码库 > 【瞎搞】 HDU 5122 K.Bro Sorting
【瞎搞】 HDU 5122 K.Bro Sorting
点击打开链接
思路:对于每一个数只要后面的数有比它小就要换
所以逆着计算下就可以了。。(同时记录最小值)
#include <cstdio> #include <cstring> #include <cstdlib> #include <string> #include <iostream> #include <algorithm> #include <sstream> #include <cmath> using namespace std; #include <queue> #include <stack> #include <set> #include <vector> #include <deque> #include <map> #define cler(arr, val) memset(arr, val, sizeof(arr)) #pragma comment(linker, "/STACK:102400000,102400000") typedef long long LL; const int MAXN = 230+1; const int MAXM = 140000; const int INF = 0x3f3f3f3f; const int mod = 1000000007; int a[10000100]; int main() { #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); // freopen("out.txt", "w", stdout); #endif int t,n,cas=1; cin>>t; while(t--) { cin>>n; for(int i=0;i<n;i++) scanf("%d",&a[i]); int maxx=999999999,sum=0; for(int i=n-1;i>=0;i--) { if(maxx<a[i]) sum++; else maxx=a[i]; } printf("Case #%d: ",cas++); cout<<sum<<endl; } }
【瞎搞】 HDU 5122 K.Bro Sorting
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。