Submission #1103987

#TimeUsernameProblemLanguageResultExecution timeMemory
1103987manhlinh1501Exam (eJOI20_exam)C++17
12 / 100
18 ms4432 KiB
#include<bits/stdc++.h> using namespace std; using i64 = long long; const int MAXN = 1e5 + 5; #define left ___left #define right ___right int N; int a[MAXN]; int b[MAXN]; namespace subtask2 { bool is_subtask() { for(int i = 1; i < N; i++) { if(b[i] != b[i + 1]) return false; } return true; } int left[MAXN]; int right[MAXN]; int cnt[MAXN]; void solution() { if(is_subtask() == false) return; for(int i = 1; i <= N; i++) { left[i] = i - 1; while(left[i] > 0 and a[left[i]] <= a[i]) left[i] = left[left[i]]; } for(int i = N; i >= 1; i--) { right[i] = i + 1; while(right[i] <= N and a[right[i]] <= a[i]) right[i] = right[right[i]]; } for(int i = 1; i <= N; i++) { left[i]++; right[i]--; } for(int i = 1; i <= N; i++) { if(a[i] == b[i]) { cnt[left[i]]++; cnt[right[i] + 1]--; } } for(int i = 1; i <= N; i++) cnt[i] += cnt[i - 1]; int ans = 0; for(int i = 1; i <= N; i++) ans += (cnt[i] > 0); cout << ans; exit(0); } } signed main() { #define task "" if(fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); } ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> N; for(int i = 1; i <= N; i++) cin >> a[i]; for(int i = 1; i <= N; i++) cin >> b[i]; subtask2::solution(); return (0 ^ 0); }

Compilation message (stderr)

exam.cpp: In function 'int main()':
exam.cpp:56:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   56 |         freopen(task".inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
exam.cpp:57:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   57 |         freopen(task".out", "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...
#Verdict Execution timeMemoryGrader output
Fetching results...