제출 #422262

#제출 시각아이디문제언어결과실행 시간메모리
422262Pbezz전선 연결 (IOI17_wiring)C++14
13 / 100
33 ms3768 KiB
#include "wiring.h" #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> using namespace std; using namespace __gnu_pbds; #define ll long long #define pb push_back typedef pair<ll,ll> pii; typedef tree<ll, null_type,less<ll>, rb_tree_tag, tree_order_statistics_node_update> indexed_set; const ll MAXN = 2e5+4; const ll INF = 1e9+7; long long min_total_length(std::vector<int> r, std::vector<int> b){ ll n=(ll)r.size(), m=(ll)b.size(),ans=0; ll le=n-1,ri=0; while(le>=0&&ri<m){ ans+=b[ri]-r[le]; le--; ri++; }//cout<<le<<" "<<ri<<" "<<ans<<endl; if(le<0){ while(ri<m){ ans+=b[ri]-r[n-1]; ri++; } }else{ while(le>=0){ ans+=b[0]-r[le]; le--; } } return ans; }
#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...