답안 #880282

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
880282 2023-11-29T05:59:47 Z Mr_Husanboy 벽 (IOI14_wall) C++17
0 / 100
347 ms 52840 KB
#include "wall.h"
#include <bits/stdc++.h>

using namespace std;
const int inf = 1e9;

void buildWall(int n, int k, int op[], int left[], int right[], int height[], int ans[]){
    vector<vector<int>> rig(n + 1), lef(n + 1);
    for(int i = 0; i < k; i ++){
      if(op[i] == 1) rig[right[i]].push_back(height[i]), lef[left[i]].push_back(height[i]);
    }
    multiset<int> st;

    for(int i = 0; i < n; i ++){
      for(auto h : lef[i]){
        st.insert(h);
      }
      ans[i] = (st.empty() ? 0 : *st.rbegin());
      for(auto h : rig[i]) st.erase(st.find(h));//, cout << h << endl;; 
    }

    rig.clear(); lef.clear();
    for(int i = 0; i < k; i ++){
      if(op[i] == 2) rig[right[i]].push_back(height[i]), lef[left[i]].push_back(height[i]);
    }
    return;

    for(int i = 0; i < n; i ++){
      for(auto h : lef[i]){
        st.insert(h);
      }
      ans[i] = min(ans[i], (st.empty() ? inf : *st.begin()));
      for(auto h : rig[i]) st.erase(st.find(h)); 
    }
}

# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Runtime error 2 ms 860 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Runtime error 347 ms 52840 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Runtime error 2 ms 860 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Runtime error 2 ms 860 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -