#include <cstdio> #include <iostream> #include <algorithm> #include <string> #include <unordered_set> #include <queue> using namespace std; int t[50001]; int main(){ int n = 0; cin >> n; for(int i = 0; i < n; ++i){ cin >> t[i]; //cout << t[i] << ", "; } //cout << "\n"; int result_up = 0; int result_down = 0; bool change_up = false; bool change_down = false; int last = t[0]; bool state = false; for(int i = 1; i<n; ++i){ if(state){ if(last < t[i]){ //cout << "A1\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } change_down=false; }else if(last > t[i]){ //cout << "A2\n"; if(change_down){ change_down=false; }else{ result_down++; change_down=true; } change_up=false; }else{ //cout << "A3\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } if(change_down){ change_down=false; }else{ result_down++; change_down=true; } } }else{ if(last > t[i]){ //cout << "B1\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } change_down=false; }else if(last < t[i]){ //cout << "B2\n"; if(change_down){ change_down=false; }else{ result_down++; change_down=true; } change_up=false; }else{ //cout << "B3\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } if(change_down){ change_down=false; }else{ result_down++; change_down=true; } } } state = not state; last = t[i]; //cout << " rup: " << result_up << " cup: " << change_up << " rdo: " << result_down << " cdo: " << change_down << " state: " << state << "\n"; } if(result_up < result_down){ cout << result_up << "\n"; }else{ cout << result_down << "\n"; } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | #include <cstdio> #include <iostream> #include <algorithm> #include <string> #include <unordered_set> #include <queue> using namespace std; int t[50001]; int main(){ int n = 0; cin >> n; for(int i = 0; i < n; ++i){ cin >> t[i]; //cout << t[i] << ", "; } //cout << "\n"; int result_up = 0; int result_down = 0; bool change_up = false; bool change_down = false; int last = t[0]; bool state = false; for(int i = 1; i<n; ++i){ if(state){ if(last < t[i]){ //cout << "A1\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } change_down=false; }else if(last > t[i]){ //cout << "A2\n"; if(change_down){ change_down=false; }else{ result_down++; change_down=true; } change_up=false; }else{ //cout << "A3\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } if(change_down){ change_down=false; }else{ result_down++; change_down=true; } } }else{ if(last > t[i]){ //cout << "B1\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } change_down=false; }else if(last < t[i]){ //cout << "B2\n"; if(change_down){ change_down=false; }else{ result_down++; change_down=true; } change_up=false; }else{ //cout << "B3\n"; if(change_up){ change_up=false; }else{ result_up++; change_up=true; } if(change_down){ change_down=false; }else{ result_down++; change_down=true; } } } state = not state; last = t[i]; //cout << " rup: " << result_up << " cup: " << change_up << " rdo: " << result_down << " cdo: " << change_down << " state: " << state << "\n"; } if(result_up < result_down){ cout << result_up << "\n"; }else{ cout << result_down << "\n"; } return 0; } |