QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#323903 | #4829. Mark on a Graph | hotboy2703 | 0 | 1ms | 3872kb | C++14 | 2.4kb | 2024-02-10 14:04:42 | 2024-02-10 14:04:43 |
answer
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
#define pll pair <ll,ll>
#define fi first
#define se second
#define sz(a) (ll((a).size()))
#define BIT(mask,i) (((mask) >> (i))&1LL)
#define MASK(i) (1LL << (i))
ll n,m;
vector <ll> g[1010];
int main(){
ios_base::sync_with_stdio(0);cin.tie(nullptr);cout.tie(nullptr);
cin>>n>>m;
vector <pll> edge;
for (ll i = 1;i <= m;i ++){
ll u,v;
cin>>u>>v;
g[u].push_back(v);
g[v].push_back(u);
edge.push_back({u,v});
}
ll cnt[6]={};
for (ll i = 1;i <= n;i ++){
if (sz(g[i])<6)cnt[sz(g[i])]^=1;
}
if (cnt[0]+cnt[1]+cnt[2]+cnt[3]+cnt[4]!=0){
cout<<"mark\n";
vector <pll> del;
for (ll i = 0;i < 5;i ++){
// cout<<i<<endl;
ll sum = 0;
for (ll j = 1;j <= n;j ++)sum += sz(g[j])==i;
if (sum%2){
bool ok = 0;
for (ll j = 1;j <= n && !ok;j ++){
if (sz(g[j])==i+1){
for (auto x:g[j]){
if (sz(g[x])>i+1){
del.push_back({j,x});
// cout<<i<<' '<<j<<' '<<x<<' '<<sz(g[j])<<' '<<sz(g[x])<<'\n';
for (ll k = 0;k < sz(g[j]);k++){
if (g[j][k]==x){
g[j].erase(g[j].begin()+k);
}
}
for (ll k = 0;k < sz(g[x]);k++){
if (g[x][k]==j){
g[x].erase(g[x].begin()+k);
}
}
ok = 1;
break;
}
}
}
}
assert(ok);
}
}
memset(cnt,0,sizeof cnt);
for (ll i = 1;i <= n;i ++){
if (sz(g[i])<6)cnt[sz(g[i])]^=1;
}
assert(cnt[0]+cnt[1]+cnt[2]+cnt[3]+cnt[4]==0);
cout<<sz(del)<<'\n';
for (auto x:del)cout<<x.fi<<' '<<x.se<<'\n';
}
else{
cout<<"ok";
}
// cout<<even<<'\n';
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3872kb
input:
1000 3560 603 151 415 20 102 569 895 552 678 734 24 614 689 518 440 223 751 919 223 433 711 551 502 634 706 583 812 501 514 535 780 751 720 530 532 384 888 139 864 791 292 675 171 881 30 592 464 557 280 299 654 650 894 335 250 532 792 10 83 969 118 771 579 300 852 983 243 940 957 939 817 889 911 319...
output:
mark 2 501 812 32 575
input:
1000 3558 397 554 396 217 262 376 854 911 576 186 50 833 648 137 232 739 184 286 383 294 83 863 367 812 930 18 167 755 283 323 250 209 722 567 667 500 655 595 253 49 479 363 51 964 263 292 831 175 375 735 125 692 102 654 437 827 125 457 932 719 551 339 353 721 379 167 163 430 272 547 620 759 360 898...
output:
ok
result:
ok all right
Test #2:
score: 0
Wrong Answer on the first run
input:
1000 2000 457 335 160 497 464 992 892 255 853 3 308 301 970 363 541 299 89 418 425 128 626 827 603 854 484 874 755 295 607 483 798 552 356 850 320 357 254 940 675 901 168 525 301 636 520 555 773 910 343 701 889 966 218 529 909 950 71 64 682 284 424 138 721 792 670 544 386 72 654 909 725 235 592 437 ...
output:
ok
input:
output:
result:
wrong answer Token "ok" doesn't correspond to pattern "mark"