fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX_LENGTH = 20;
  5.  
  6. int main() {
  7. int x, n, v[MAX_LENGTH + 1], start = 0, stop = 0, seqMax = 0;
  8. cin >> x >> n;
  9. int currentStartSeqIndex = -1, currentSeqLen = 0 ;
  10. for (int i = 1; i <= n; ++i) {
  11. cin >> v[i];
  12. if (v[i] == x) {
  13. if(currentStartSeqIndex == -1) {
  14. currentStartSeqIndex = i;
  15. }
  16. ++currentSeqLen;
  17. if (currentSeqLen > seqMax) {
  18. seqMax = currentSeqLen;
  19. start = currentStartSeqIndex;
  20. stop = i;
  21. }
  22. } else {
  23. currentStartSeqIndex = -1;
  24. currentSeqLen = 0;
  25. }
  26. }
  27. cout << start << " " << stop;
  28. return 0;
  29. }
Success #stdin #stdout 0.01s 5288KB
stdin
4 11
4 4 2 4 4 4 3 4 4 4 3
stdout
4 6