Advertisement
Ahmed_Negm

B

Aug 28th, 2022
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.67 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define ll long long
  5. #define ull unsigned long long
  6. #define nl '\n'
  7. #define sz(x) int(x.size())
  8. #define all(x) x.begin(),x.end()
  9. #define rall(s)  s.rbegin(), s.rend()
  10. #define getline(s) getline(cin>>ws,s)
  11. #define ceill(n, m) (((n) / (m)) + ((n) % (m) ? 1 : 0))
  12. #define pi  3.141592653589793
  13.  
  14. /*
  15. ███╗░░██╗███████╗░██████╗░███╗░░░███╗
  16. ████╗░██║██╔════╝██╔════╝░████╗░████║
  17. ██╔██╗██║█████╗░░██║░░██╗░██╔████╔██║
  18. ██║╚████║██╔══╝░░██║░░╚██╗██║╚██╔╝██║
  19. ██║░╚███║███████╗╚██████╔╝██║░╚═╝░██║
  20. ╚═╝░░╚══╝╚══════╝░╚═════╝░╚═╝░░░░░╚═╝
  21.  
  22. */
  23.  
  24. void Fast_IO(){
  25. ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  26. // freopen("filename.in", "r", stdin);
  27. // freopen("filename.txt", "w", stdout);
  28. #ifndef ONLINE_JUDGE
  29. freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  30. #endif
  31. }
  32.  
  33.  
  34.  
  35.  
  36.  
  37. void solve(){
  38.   ll n; cin>>n;
  39.   vector<ll>a(n),b(n),c(n);
  40.   for(auto&i:a) cin>>i;
  41.     for(auto&i:b) cin>>i;
  42.     for(auto&i:c) cin>>i;
  43.     for(int i=0; i<n; i++){
  44.         if(a[i] == c[i] or b[i] == c[i]) continue;
  45.         else return cout<<"NO",void();
  46.     }
  47.     cout<<"YES";
  48.  
  49.  
  50.  
  51.  
  52. }
  53.  
  54. int main(){
  55.     Fast_IO();
  56. int t =1;
  57. //cin>>t;
  58. while(t--){
  59. solve();
  60. }
  61. return 0;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement