답안 #1098657

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1098657 2024-10-09T16:22:48 Z vjudge1 벽 (IOI14_wall) C++17
0 / 100
1 ms 424 KB
void buildWall(int n, int k, int op[], int left[], int right[],int height[], int finalHeight[]){
  long long int dp[n+5];
  for(int i=0;i<=n+1;i++)dp[i]=0;
  for(int i=0;i<k;i++){
    left[i]--,right[i]--;
    if(op[i]==1){
      dp[left[i]]+=1LL*height[i],dp[right[i]+1]-=1LL*height[i];
    }else{
      dp[left[i]]-=1LL*height[i],dp[right[i]+1]+=1LL*height[i];
    }
  }long long int cur = 0;
  for(int i=0;i<n;i++){
    cur+=dp[i];
    finalHeight[i]=cur;
  }return;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 420 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 424 KB Output isn't correct
2 Halted 0 ms 0 KB -