# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
116001 |
2019-06-10T07:07:28 Z |
minhcool |
Secret (JOI14_secret) |
C++17 |
|
504 ms |
4588 KB |
#include<bits/stdc++.h>
#include "secret.h"
using namespace std;
int ans[1001][11], n, b[1001];
int ask(int x, int y){
return Secret(x, y);
}
void build(){
for(int i = 1; i <= n; i++) ans[i][0] = b[i];
for(int i = 1; i < 10; i++){
int tmp = 1 << i;
for(int j = 1; j + tmp <= n; j++) ans[j][i] = ask(ans[j][i - 1], ans[j + (1 << (i - 1))][i - 1]);
}
}
void Init(int N, int A[]){
n = N;
for(int i = 1; i <= n; i++) b[i] = A[i - 1];
build();
}
int Query(int x, int y){
x--;
y--;
int tmp = x, answer = 0;
for(int i = 9; i >= 0; i--){
if(tmp + (1 << i) > y) continue;
if(!answer) answer = ans[tmp][i];
else answer = ask(answer, ans[tmp][i]);
tmp += (1 << i);
}
return answer;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
132 ms |
2492 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 476271. |
2 |
Incorrect |
133 ms |
2428 KB |
Wrong Answer: Query(60, 375) - expected : 669221184, actual : 581077289. |
3 |
Incorrect |
132 ms |
2452 KB |
Wrong Answer: Query(211, 401) - expected : 674373968, actual : 624355350. |
4 |
Incorrect |
488 ms |
4540 KB |
Wrong Answer: Query(90, 497) - expected : 397934825, actual : 329859079. |
5 |
Incorrect |
490 ms |
4476 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 363514902. |
6 |
Incorrect |
493 ms |
4336 KB |
Wrong Answer: Query(915, 915) - expected : 282904741, actual : 0. |
7 |
Incorrect |
504 ms |
4472 KB |
Wrong Answer: Query(84, 976) - expected : 742463504, actual : 17897522. |
8 |
Incorrect |
497 ms |
4588 KB |
Wrong Answer: Query(58, 987) - expected : 20022464, actual : 485556376. |
9 |
Incorrect |
503 ms |
4344 KB |
Wrong Answer: Query(33, 967) - expected : 676869696, actual : 146943180. |
10 |
Incorrect |
492 ms |
4388 KB |
Wrong Answer: Query(116, 961) - expected : 68487362, actual : 268829964. |