QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#591639 | #8781. Element-Wise Comparison | ericmegalovania | ML | 0ms | 3996kb | C++20 | 3.2kb | 2024-09-26 16:58:42 | 2024-09-26 16:58:43 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ONLINE
#ifndef ONLINE
char DEBUG_BUFFER[1000];
#define debug(...) {sprintf(DEBUG_BUFFER,##__VA_ARGS__);\
cerr<<"\033[1;36m"<<DEBUG_BUFFER<<"\033[0;2m"<<"\033[0m";}
#else
#define debug(...) ;
#endif
using LL=long long;
using PII=pair<int,int>;
#define all(x) (x).begin(),(x).end()
#define allr(x) (x).rbegin(),(x).rend()
#define FAST_IO {ios::sync_with_stdio(false);cin.tie(nullptr);}
inline int read(){static int x; cin>>x; return x;}
inline LL readLL(){static LL x; cin>>x; return x;}
mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
template<int N_>
struct Bitset{
using ULL=unsigned long long;
static const ULL o=1,inf=(o<<63)-1+(o<<63);
static const int N=(N_-1)/64+1;
static const int back_siz=N_-(N-1)*64;
ULL *a=new ULL[N];
// ULL a[N];
void reset(){
fill(a,a+N,0);
}
void set(){
fill(a,a+N-1,inf);
a[N-1]=(o<<back_siz-1)-1+(o<<back_siz-1);
}
Bitset(const bool& _=0){
_?set():reset();
}
void flip(int x){
a[x>>6]^=o<<(x&63);
}
void reset(int x){
a[x>>6]&=~(o<<(x&63));
}
void set(int x){
a[x>>6]|=o<<(x&63);
}
int test(int x){
return (a[x>>6]>>(x&63))&1;
}
Bitset operator ~() const{
Bitset ret(N);
for(int i=0;i<N;i++){
ret.a[i]=~a[i];
}
return ret;
}
Bitset operator &(const Bitset &b) const{
Bitset ret(N);
for(int i=0;i<N;i++){
ret.a[i]=a[i]&b.a[i];
}
return ret;
}
Bitset operator |(const Bitset &b) const{
Bitset ret;
for(int i=0;i<N;i++){
ret.a[i]=a[i]|b.a[i];
}
return ret;
}
Bitset operator ^(const Bitset &b) const{
Bitset ret;
for(int i=0;i<N;i++){
ret.a[i]=a[i]^b.a[i];
}
return ret;
}
Bitset operator <<(const int& t) const{
Bitset ret;
ULL last=0;
int high=t>>6,low=t&63;
for(int i=0;i+high<N;i++){
ret.a[i+high]=last|(a[i]<<low);
if(low) last=a[i]>>(64-low);
}
return ret;
}
Bitset operator >>(const int& t) const{
Bitset ret;
ULL last=0;
int high=t>>6,low=t&63;
for(int i=N-1;i>=high;i--){
ret.a[i-high]=last|(a[i]>>low);
if(low) last=a[i]<<(64-low);
}
return ret;
}
string str() const{
string s="";
for(int j=back_siz-1;j>=0;j--){
s.push_back('0'+(a[N-1]>>j&1));
}
for(int i=N-2;i>=0;i--){
for(int j=63;j>=0;j--){
s.push_back('0'+(a[i]>>j&1));
}
}
return s;
}
int count() const{
int ret=0;
for(int i=0;i<N;i++){
ret+=__builtin_popcountll(a[i]);
}
return ret;
}
};
#define N 50001
int main(){
FAST_IO;
int n=read(),m=read();
vector<int>pos(n);
for(int i=0;i<n;i++){
pos[read()-1]=i;
}
vector<Bitset<N>>f(n),suf(m);
Bitset<N>tmp;
for(int x=n-1;x>=0;x--){
f[pos[x]]=tmp>>pos[x];
tmp.set(pos[x]);
}
LL ans=0;
for(int i=0,last=-1;i<n-m+1;i++){
if(i>last){
last+=m;
suf[0]=f[last];
for(int j=1;j<m;j++){
suf[j]=suf[j-1]&f[last-j];
}
tmp.set();
}
ans+=(suf[last-i]&tmp).count();
if(i+m<n) tmp=tmp&f[i+m];
}
cout<<ans;
return 0;
}
/* stuff you should look for
* int overflow, array bounds
* special cases (n=1?)
* do smth instead of nothing and stay organized
* WRITE STUFF DOWN
* DON'T GET STUCK ON ONE APPROACH
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3772kb
input:
5 3 5 2 1 3 4
output:
0
result:
ok answer is '0'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3996kb
input:
5 2 3 1 4 2 5
output:
2
result:
ok answer is '2'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3980kb
input:
4 2 1 2 3 4
output:
3
result:
ok answer is '3'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
4 2 4 3 2 1
output:
0
result:
ok answer is '0'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
1 1 1
output:
0
result:
ok answer is '0'
Test #6:
score: -100
Memory Limit Exceeded
input:
50000 2 44045 29783 5389 7756 44022 45140 21967 5478 10868 49226 21775 31669 49836 13511 46116 14229 27206 31168 37389 3158 10658 41154 14635 18526 40540 6451 23197 46719 30593 13517 8604 46666 39189 43746 12778 3684 3194 36979 43020 14652 19549 31178 17144 27177 44336 2849 40220 11751 41993 32209 4...
output:
310780127