Refact.ai Match 1 (Codeforces Round 985) 總結
A
集合中的元素為 \(l \le x \le r\),有 \(k\) 個 \(x\) 的倍數在其中才可刪,可以求出最大可刪的元素,直接計算。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
using namespace std;
typedef long long ll;
const int N=1;
ll l,r,k;
void solve()
{
cin>>l>>r>>k;
r=r/k;
cout<<max(0ll,r-l+1)<<'\n';
}
int main ()
{
#ifndef ONLINE_JUDGE
freopen("1.in","r",stdin);
freopen("1.out","w",stdout);
#endif
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int T;
cin>>T;
while(T--) solve();
return 0;
}
B
思考一下,發現我們並不關心 \(0\) 和 \(1\) 的順序,只關心數量,只要同時有 \(0\) 和 \(1\) 就能進行操作,這樣模擬過程即可。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
using namespace std;
typedef long long ll;
const int N=1e5+5;
int n;
string s,r;
int a[2];
void solve()
{
cin>>n>>s>>r;
a[0]=a[1]=0;
for(int i=0;i<n;i++) a[s[i]-'0']++;
for(int i=0;i<n-1;i++)
{
if(a[0]&&a[1])
{
a[0]--,a[1]--;
a[r[i]-'0']++;
}
else
{
cout<<"No\n";
return ;
}
}
cout<<"Yes\n";
}
int main ()
{
#ifndef ONLINE_JUDGE
freopen("1.in","r",stdin);
freopen("1.out","w",stdout);
#endif
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int T;
cin>>T;
while(T--) solve();
return 0;
}
C
首先要明確一點,更大的初始值在透過幾場比賽後的評分一定不劣於更小的初始值。
答案的範圍顯然為 \([1,n-1]\),計算最大的可能評分,考慮二分答案。
如何檢驗?設 \(b_i\) 為透過前 \(i\) 場比賽能獲得的評分,再取字首最大值。檢驗的時候從後往前掃,逆過程當 \(x=a_i\) 時能有三種情況,顯然我們要令 \(x\) 更小,所以當 \(x \le a_i\) 時,\(x\) 要減一,否則加一。若此時 \(b_{i-1}>=x\),則說明字首中出現了大於等於能達到答案的最小的評分的值,返回真。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
const int N=3e5+5;
int n;
int a[N],b[N];
bool check(int k)
{
int x=k;
for(int i=n;i>=1;i--)
{
if(b[i-1]>=x) return 1;
if(a[i]>=x) x--;
else x++;
}
return 0;
}
void solve()
{
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i];
if(n==1)
{
cout<<0<<'\n';
return ;
}
int x=0,ans=0;
for(int i=1;i<=n;i++)
{
if(a[i]>x) x++;
else if(a[i]<x) x--;
b[i]=max(b[i-1],x);
}
int l=1,r=n,mid;
while(l<=r)
{
mid=(l+r)/2;
if(check(mid)) ans=mid,l=mid+1;
else r=mid-1;
}
cout<<min(ans,n-1)<<'\n';
}
int main ()
{
#ifndef ONLINE_JUDGE
freopen("1.in","r",stdin);
freopen("1.out","w",stdout);
#endif
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int T;
cin>>T;
while(T--) solve();
return 0;
}
D
運算元最多為 \(2 \times \max(n,m)\),可以考慮先將圖全部拆了再建樹。
對於每個度數大於 \(1\) 的點 \(x\),選擇於點 \(x\) 相鄰的兩個點 \(y\),\(z\),對 \((x,y,z)\) 進行一次操作,若 \(y\) 於 \(z\) 有邊相連,則會減少 \(3\) 條邊,否則會減少 \(1\) 條邊。因此這樣拆圖的運算元最大為 \(m-1\)。
最終整個圖就都是些度數小於等於 \(1\) 的點。也就是說,要麼是單個點,要麼是兩個點連一條邊。如果都是單個點顯然就不用繼續了,否則考慮其中一個度數為 \(1\) 的點為 \(x\),與其相連的點為 \(y\),接下來建的樹以 \(x\) 為根。每次選擇沒合併進來的點 \(z\) 不管它的度數,對 \((x,y,z)\) 進行操作。此時 \(y\) 與 \(z\) 相連,\(z\) 與 \(x\) 相連,將 \(y\) 更新為 \(z\) 繼續操作。每次至少能合併一個點,所以這個過程的運算元最大為 \(n-1\)。
考慮兩個過程如何實現,第一個過程用 set 存邊,可以輕易實現刪邊和加邊。
第二個過程可以使用並查集,因為只有合併的操作。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
const int N=1e5+5,M=4e5+5;
int n,m;
set<int> s[N];
int deg[N];
struct node
{
int x,y,z;
}ans[M];
int tot;
void add(int x,int y)
{
s[x].insert(y);
s[y].insert(x);
}
void del(int x,int y)
{
s[x].erase(y);
s[y].erase(x);
}
int fa[N];
int find(int x)
{
if(x==fa[x]) return x;
return fa[x]=find(fa[x]);
}
void solve()
{
cin>>n>>m;
tot=0;
for(int i=1;i<=n;i++) s[i].clear(),deg[i]=0,fa[i]=i;
for(int i=1;i<=m;i++)
{
int x,y;
cin>>x>>y;
add(x,y);
deg[x]++,deg[y]++;
}
for(int i=1;i<=n;i++)
{
while(deg[i]>1)
{
auto it=s[i].begin();
int x=*it;
it++;
int y=*it;
del(x,i),del(y,i);
deg[i]-=2;
ans[++tot]={i,x,y};
if(s[x].count(y))
{
del(x,y);
deg[x]-=2;
deg[y]-=2;
}
else add(x,y);
}
}
bool st=0;
int x,y;
for(int i=1;i<=n;i++)
{
if(deg[i])
{
st=1;
x=i,y=*s[i].begin();
fa[find(x)]=find(y);
}
}
if(st)
{
x=find(x);
for(int i=1;i<=n;i++)
{
int z=find(i);
if(z!=x)
{
ans[++tot]={x,y,z};
y=z;
fa[z]=x;
}
}
}
cout<<tot<<'\n';
for(int i=1;i<=tot;i++) cout<<ans[i].x<<' '<<ans[i].y<<' '<<ans[i].z<<'\n';
}
int main ()
{
#ifndef ONLINE_JUDGE
freopen("1.in","r",stdin);
freopen("1.out","w",stdout);
#endif
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int T;
cin>>T;
while(T--) solve();
return 0;
}