Submission #858101

#TimeUsernameProblemLanguageResultExecution timeMemory
858101edogawa_somethingBubble Sort 2 (JOI18_bubblesort2)C++17
0 / 100
33 ms688 KiB
#include "bubblesort2.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<ll> vii; typedef pair<ll,ll> pii; #define F first #define S second #define all(v) v.begin(),v.end() #define pb push_back const ll M=5e5+10; const ll inf=2e18; vector<int>countScans(vector<int> a,vector<int> x,vector<int> v){ vector<int> ans; for(int i=0;i<x.size();i++){ a[x[i]]=v[i]; ll m=inf; ll res=0; for(int j=a.size()-1;j>=0;j--){ if(ll(a[j])>m) res++; m=min(m,ll(a[j])); } ans.pb(res); } return ans; }

Compilation message (stderr)

bubblesort2.cpp: In function 'std::vector<int> countScans(std::vector<int>, std::vector<int>, std::vector<int>)':
bubblesort2.cpp:15:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |  for(int i=0;i<x.size();i++){
      |              ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...