Submission #714124

# Submission time Handle Problem Language Result Execution time Memory
714124 2023-03-24T02:04:49 Z mongla Preokret (COCI18_preokret) C++
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#define MAX 2880
using namespace std;
int t1[MAX+5],t2[MAX+5];
int main(){
	int a,b,x;
    cin>>a; for(int i=1;i<=a;i++) cin>>x,t1[x]++;
    cin>>b; for(int i=1;i<=b;i++) cin>>x,t2[x]++;
    
    int s1=0,s2=0,exceed=0,ans=0;
    char winner='\0';
    for(int i=1;i<=MAX;i++){
        if(t1[i]) s1++;
        if(t2[i]) scoreB++;
        ans=s1+scoreB;
        
        if(i==MAX/2) cout<<ans<<'\n'; 
        
        if(s1>scoreB) 
            if(winner=='B')                
                exceed++;
            winner='A';

        if(s1<scoreB)
            if(winner=='A')
                exceed++;
            winner='B';
    }
    cout<<exceed;
    return 0;
} 

Compilation message

preokret.cpp: In function 'int main()':
preokret.cpp:14:19: error: 'scoreB' was not declared in this scope
   14 |         if(t2[i]) scoreB++;
      |                   ^~~~~~
preokret.cpp:15:16: error: 'scoreB' was not declared in this scope
   15 |         ans=s1+scoreB;
      |                ^~~~~~
preokret.cpp:19:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   19 |         if(s1>scoreB)
      |         ^~
preokret.cpp:22:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   22 |             winner='A';
      |             ^~~~~~
preokret.cpp:24:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   24 |         if(s1<scoreB)
      |         ^~
preokret.cpp:27:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   27 |             winner='B';
      |             ^~~~~~
preokret.cpp:10:14: warning: unused variable 's2' [-Wunused-variable]
   10 |     int s1=0,s2=0,exceed=0,ans=0;
      |              ^~