# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1034153 |
2024-07-25T10:09:26 Z |
vjudge1 |
cmp (balkan11_cmp) |
C++17 |
|
1 ms |
344 KB |
#include "cmp.h"
#include <bits/stdc++.h>
using namespace std;
string abc = "abcdefghijklmnopqrstuvwxyz";
// #define int long long
void remember(int a){
int cur = 21;
for(int i = 0; i < 11; i+=2){
if((1<<i)&a && (1<<(i+1))&a){
bit_set(cur);
}
else if((1<<i)&a){
bit_set(i);
}
else if((1<<(i+1))&a){
bit_set(i+1);
}
cur++;
}
}
int compare(int a){
int cur = 26;
for(int i = 11; i >= 1; i--){
if(a&(1<<i) && a&(1<<(i-1))){
int f = bit_get(cur);
if(f) continue;
return 1;
}
if(a&(1<<i)){
// int f = bit_set(cur);
int x = bit_get(i);
int y = bit_get(i-1);
if(x&&y) return -1;
if(x) continue;
return 1;
}
if(a&(1<<(i-1))){
int x = bit_get(i);
int y = bit_get(i-1);
if(x&&y) return -1;
if(x) return -1;
if(y) continue;
return 1;
}
int x = bit_get(i);
int y = bit_get(i-1);
if(x||y){
return -1;
}
continue;
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
ZERO POINTS: bit_set with addr out of range 0 |