제출 #525378

#제출 시각아이디문제언어결과실행 시간메모리
525378x0r전선 연결 (IOI17_wiring)C++17
0 / 100
1 ms332 KiB
#include "wiring.h" #include <bits/stdc++.h> #define ll long long #define ld long double #define fi first #define se second #define pll pair < ll, ll > #define pii pair < int, int > #define fast ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); using namespace std; const string NAME = ""; const string NAME2 = "TEST"; const ll ESP = 1e-9; const ll INF = 1e18; const ll nmax = 1e7; const ll MOD = 1e9 + 7; void fre() { string finp = NAME + ".inp"; string fout = NAME + ".out"; freopen(finp.c_str(), "r", stdin); freopen(fout.c_str(), "w", stdout); } int n, m; vector < int > r, b; vector < pll > c; vector < ll > pos_r, pos_b, pos, sum, pre, suff, dp; //1 = r //2 = b void minimize(ll &x, ll y) { x = min(x, y); } void create_pos() { int cnt_r = 0; pos_b.resize(b.size() + 5, -1); pos_r.resize(r.size() + 5, -1); pos.resize(b.size() + r.size() + 5, -1); pos_r[0] = pos_b[0] = 0; for (int i = 1; i < c.size(); i++) { cnt_r += (c[i].se == 1); cnt_r -= (c[i].se == 2); if (cnt_r >= 0) pos[i] = pos_r[cnt_r]; if (cnt_r <= 0) pos[i] = pos_b[abs(cnt_r)]; if (cnt_r >= 0) pos_r[cnt_r] = i; if (cnt_r <= 0) pos_b[abs(cnt_r)] = i; } } void create_pre_suff() { pre.resize(b.size() + r.size() + 5, -1); suff.resize(b.size() + r.size() + 5, -1); int pos_c[3]; pos_c[1] = pos_c[2] = -1; for (int i = 1; i < c.size(); i++) { if (c[i].se == 1 && pos_c[2] != -1) pre[i] = pos_c[2]; if (c[i].se == 2 && pos_c[1] != -1) pre[i] = pos_c[1]; pos_c[c[i].se] = i; } pos_c[1] = pos_c[2] = -1; for (int i = c.size() - 1; i > 0; i--) { if (c[i].se == 1 && pos_c[2] != -1) suff[i] = pos_c[2]; if (c[i].se == 2 && pos_c[1] != -1) suff[i] = pos_c[1]; pos_c[c[i].se] = i; } } void create_sum() { sum.resize(b.size() + r.size() + 5); sum[0] = 0; for (int i = 1; i < c.size(); i++) { sum[i] = sum[i - 1] + c[i].fi; } } ll calc(ll l, ll r) { return (sum[r] - sum[l - 1]) - 2 * (sum[(l + r) / 2] - sum[l - 1]); } ll min_total_length(vector < int > r, vector < int > b) { c.clear(); c.push_back({-1, -1}); for (int i = 0; i < r.size(); i++) c.push_back({r[i], 1}); for (int i = 0; i < b.size(); i++) c.push_back({b[i], 2}); sort(c.begin(), c.end()); create_pos(); create_pre_suff(); create_sum(); dp.resize(r.size() + b.size() + 5, INF); dp[0] = 0; for (int i = 1; i < c.size(); i++) { if (pre[i] != -1) minimize(dp[i], dp[i - 1] + c[i].fi - c[pre[i]].fi); if (suff[i] != -1) minimize(dp[i], dp[i - 1] + c[suff[i]].fi - c[i].fi); if (pos[i] != -1) minimize(dp[i], dp[pos[i]] + calc(pos[i] + 1, i)); //cout << i << " " << pos[i] << " " << dp[i] << '\n'; } return dp[c.size() - 1]; }

컴파일 시 표준 에러 (stderr) 메시지

wiring.cpp: In function 'void create_pos()':
wiring.cpp:49:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   49 |  for (int i = 1; i < c.size(); i++) {
      |                  ~~^~~~~~~~~~
wiring.cpp: In function 'void create_pre_suff()':
wiring.cpp:64:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   64 |  for (int i = 1; i < c.size(); i++) {
      |                  ~~^~~~~~~~~~
wiring.cpp: In function 'void create_sum()':
wiring.cpp:81:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   81 |  for (int i = 1; i < c.size(); i++) {
      |                  ~~^~~~~~~~~~
wiring.cpp: In function 'long long int min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:93:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   93 |  for (int i = 0; i < r.size(); i++) c.push_back({r[i], 1});
      |                  ~~^~~~~~~~~~
wiring.cpp:94:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   94 |  for (int i = 0; i < b.size(); i++) c.push_back({b[i], 2});
      |                  ~~^~~~~~~~~~
wiring.cpp:101:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  101 |  for (int i = 1; i < c.size(); i++) {
      |                  ~~^~~~~~~~~~
wiring.cpp: In function 'void fre()':
wiring.cpp:24:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   24 |  freopen(finp.c_str(), "r", stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
wiring.cpp:25:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   25 |  freopen(fout.c_str(), "w", stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...