제출 #354723

#제출 시각아이디문제언어결과실행 시간메모리
354723kylych03Roller Coaster Railroad (IOI16_railroad)C++14
0 / 100
555 ms28652 KiB
#include "railroad.h" #include <bits/stdc++.h> //#include "grader.cpp" #define ll long long using namespace std; long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) { int n = (int) s.size(); map <ll, ll> mp; map <ll, ll> ::iterator it; for(int i = 0 ; i < n;i++){ mp[s[i]]--; mp[t[i]]++; } mp[0]++; ll cnt = 0, res, last = 0; for( it = mp.begin() ; it!=mp.end() ; it++){ cnt += it->second; //cout << cnt<< " - " <<it->first<<" - " <<it->second<<endl; if(cnt < 0){ // cout << cnt <<" ok " <<it->first <<" - " << last << endl; res+= ( cnt * (it->first - last) ); } last = it->first; } if( res!=0) return 1; return res; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...