Submission #25137

#TimeUsernameProblemLanguageResultExecution timeMemory
25137zoomswkGlobal Warming (NOI13_gw)C++14
19 / 40
153 ms12484 KiB
#include <stdio.h> #include <algorithm> #include <vector> #include <map> using namespace std; int h[100005]; int tmp[100005]; map<int, int> mp; vector<int> vt[100005]; int par[100005]; int findpar(int x){ if(par[x] != x) par[x] = findpar(par[x]); return par[x]; } int main(){ int n; scanf("%d", &n); if(n > 100000) return 1; for(int i=0; i<n; i++){ scanf("%d", &h[i]); tmp[i] = h[i]; } sort(tmp, tmp+n); for(int i=0; i<n; i++) mp[tmp[i]] = i; for(int i=0; i<n; i++) vt[mp[h[i]]].push_back(i); int res = 0, cur = 0; for(int i=0; i<=n; i++) par[i] = n; for(int i=n-1; i>=0; i--){ cur += vt[i].size(); for(int j=0; j<vt[i].size(); j++){ par[vt[i][j]] = vt[i][j]; } for(int j=0; j<vt[i].size(); j++){ int pos = vt[i][j]; int u = findpar(pos); if(pos != n-1){ int v = findpar(pos+1); if(v != n && u != v) par[v] = u, cur--; } if(pos != 0){ int v = findpar(pos-1); if(v != n && u != v) par[v] = u, cur--; } } if(cur > res) res = cur; } printf("%d", res); return 0; }

Compilation message (stderr)

gw.cpp: In function 'int main()':
gw.cpp:33:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int j=0; j<vt[i].size(); j++){
                       ^
gw.cpp:36:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int j=0; j<vt[i].size(); j++){
                       ^
gw.cpp:20:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
gw.cpp:23:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &h[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...
#Verdict Execution timeMemoryGrader output
Fetching results...