Submission #51361

# Submission time Handle Problem Language Result Execution time Memory
51361 2018-06-17T16:01:08 Z KieranHorgan CATS (NOI14_cats) C++17
0 / 25
1500 ms 393216 KB
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
 
using namespace std;
#define endl '\n'
#define ll long long
#define int long long
#define ld long double
#define pii pair<int,int>
#define rand() abs((rand()<<15)|rand())
#define randll() abs(((long long)rand()<<30)|rand())
 
signed main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  long long seed;
  asm("rdtsc" : "=A"(seed));
  srand(seed);
 
  int q;
  cin >> q;
  while(q--) {
    int X, L, N;
    cin >> X >> L >> N;
    int counter = X;
    vector<int> s1(100000, 0), s2(100000, 0);
    int xo = 0, x;
    while(counter) {
      s2.clear();
      if(s1.empty()) s1.push_back(0);
      s2.push_back(s1.back());
      s1.pop_back();
      if(s2.back() > L) {
        counter--;
      } else {
        s2.back() += N*2;
        s1.push_back(s2.back()^1);
        s1.push_back(s2.back());
      }
    }
    cout << s2.back() << endl;
  }
}

Compilation message

cats.cpp: In function 'int main()':
cats.cpp:27:9: warning: unused variable 'xo' [-Wunused-variable]
     int xo = 0, x;
         ^~
cats.cpp:27:17: warning: unused variable 'x' [-Wunused-variable]
     int xo = 0, x;
                 ^
# Verdict Execution time Memory Grader output
1 Incorrect 9 ms 2680 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 325 ms 2892 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1579 ms 3020 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1564 ms 6492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1194 ms 393216 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1362 ms 393216 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -