Submission #202350

# Submission time Handle Problem Language Result Execution time Memory
202350 2020-02-15T18:15:08 Z a_player Wall (IOI14_wall) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>

using namespace std;
#define fh finalHeight

int m[MAXN][2];
int t[MAXN][2];

void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){
    for(int i=0;i<n;i++)m[i][1]=INT_MAX;
  for(int i=0;i<k;i++){
      if(op[i]==1){
          for(int j=left[i];j<=right[i];j++){
              if(m[j][0]<=height[i]){
                  m[j][0]=height[i];
                  t[j][0]=i;
              }
          }
          
      }else{
          for(int j=left[i];j<=right[i];j++){
              if(m[j][1]>=height[i]){
                  m[j][1]=height[i];
                  t[j][1]=i;
              }
          }
      }

  }
  for(int i=0;i<n;i++){
      if(m[i][0]>=m[i][1]&&t[i][0]>t[i][1])fh[i]=m[i][0];
      if(m[i][0]>=m[i][1]&&t[i][0]<t[i][1])fh[i]=m[i][1];
      if(m[i][0]<=m[i][1])fh[i]=m[i][0];
  }
}

Compilation message

wall.cpp:6:7: error: 'MAXN' was not declared in this scope
 int m[MAXN][2];
       ^~~~
wall.cpp:6:7: note: suggested alternative: 'NAN'
 int m[MAXN][2];
       ^~~~
       NAN
wall.cpp:7:7: error: 'MAXN' was not declared in this scope
 int t[MAXN][2];
       ^~~~
wall.cpp:7:7: note: suggested alternative: 'NAN'
 int t[MAXN][2];
       ^~~~
       NAN
wall.cpp: In function 'void buildWall(int, int, int*, int*, int*, int*, int*)':
wall.cpp:10:25: error: 'm' was not declared in this scope
     for(int i=0;i<n;i++)m[i][1]=INT_MAX;
                         ^
wall.cpp:14:18: error: 'm' was not declared in this scope
               if(m[j][0]<=height[i]){
                  ^
wall.cpp:16:19: error: 't' was not declared in this scope
                   t[j][0]=i;
                   ^
wall.cpp:22:18: error: 'm' was not declared in this scope
               if(m[j][1]>=height[i]){
                  ^
wall.cpp:24:19: error: 't' was not declared in this scope
                   t[j][1]=i;
                   ^
wall.cpp:31:10: error: 'm' was not declared in this scope
       if(m[i][0]>=m[i][1]&&t[i][0]>t[i][1])fh[i]=m[i][0];
          ^
wall.cpp:31:28: error: 't' was not declared in this scope
       if(m[i][0]>=m[i][1]&&t[i][0]>t[i][1])fh[i]=m[i][0];
                            ^
wall.cpp:32:10: error: 'm' was not declared in this scope
       if(m[i][0]>=m[i][1]&&t[i][0]<t[i][1])fh[i]=m[i][1];
          ^
wall.cpp:32:28: error: 't' was not declared in this scope
       if(m[i][0]>=m[i][1]&&t[i][0]<t[i][1])fh[i]=m[i][1];
                            ^
wall.cpp:33:10: error: 'm' was not declared in this scope
       if(m[i][0]<=m[i][1])fh[i]=m[i][0];
          ^