Advertisement
Saleh127

cf 1380A

Jul 12th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define test int t; cin>>t; while (t--)
  4. #define ll long long int
  5. #define fellow_junior ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
  6. int main()
  7. {
  8. fellow_junior
  9. test
  10. {
  11. ll a[100000],c,d=0,e,f,i,j,k,l;
  12. cin>>c;
  13. for(i=1; i<=c; i++)
  14. {
  15. cin>>a[i];
  16. }
  17. for(i=2; i<=c-1; i++)
  18. {
  19. if(a[i]>a[i-1] && a[i]>a[i+1])
  20. {
  21. cout<<"YES"<<endl;
  22. cout<<i-1<<" "<<i<<" "<<i+1<<endl;
  23. d=1;
  24. break;
  25. }
  26. }
  27. if(d==0) cout<<"NO"<<endl;
  28. }
  29. return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement