我是靠谱客的博主 俭朴百合,这篇文章主要介绍L Eventual … Journey,现在分享给大家,希望可以做个参考。

https://codeforc.es/gym/102056 

思路:步数只有1,2,3,判断一下10相连情况; 

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <iostream> #include <cstring> #include <queue> #include <vector> #include <algorithm> #include <cstdio> #include <map> #include<bits/stdc++.h> using namespace std; #define sfi(i) scanf("%d",&i) #define sfl(i) scanf("%lld",&i) #define sfs(i) scanf("%s",(i)) #define pri(i) printf("%dn",i) #define sff(i) scanf("%lf",&i) #define ll long long #define ull unsigned long long #define mem(x,y) memset(x,y,sizeof(x)) #define INF 0x3f3f3f3f #define eps 1e-10 #define PI acos(-1.0) #define lowbit(x) ((x)&(-x)) #define zero(x) (((x)>0?(x):-(x))<eps) #define fl() printf("flagn") #define MOD(x) ((x%mod)+mod)%mod #define endl 'n' #define pb push_back #define FAST_IO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0) /* //--------------------------------------------------------- #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/hash_policy.hpp> #include <ext/pb_ds/priority_queue.hpp> using namespace __gnu_pbds; */ //gp_hash_table<string,int>mp2; //__gnu_pbds::priority_queue<int>q;//因为放置和std重复,故需要带上命名空间 //__gnu_pbds::priority_queue<int,greater<int>,pairing_heap_tag> pq;//最快 //---------------------------------------------------------- /* //---------------------------------------------------------- const int BufferSize = 1 << 16; char buffer[BufferSize], *_head, *_tail; inline char Getchar() { if (_head == _tail) { int l = fread(buffer, 1, BufferSize, stdin); _tail = (_head = buffer) + l; } return *_head++; } inline int read() { int x = 0, f = 1;char c = Getchar(); for (;!isdigit(c);c = Getchar()) if (c == '-') f = -1; for (;isdigit(c);c = Getchar()) x = x * 10 + c - '0'; return x * f; } //---------------------------------------------------------- */ const int maxn=1e5+9; const int maxm=4e5+9; const int mod=998244353; bool a[maxn]; map<int,int>vis; int main() { //FAST_IO; //freopen("input.txt","r",stdin); int n,m; sfi(n); sfi(m); int yi=0; int li=0; for(int i=1;i<=n;i++) { sfi(a[i]); if(a[i]) yi++; else li++; } int k1=0,k2=0; for(int i=1;i<=m;i++) { int u,v; sfi(u); sfi(v); if(a[u]!=a[v]) { if(vis[u]==0) { if(a[u]==1)k1++; else k2++; } if(vis[v]==0) { if(a[v]==1) k1++; else k2++; } vis[u]++,vis[v]++; } } //cout<<yi<<li<<endl; for(int i=1;i<=n;i++) { int tmp=vis[i]; if(i!=1) printf(" "); if(a[i]) { if(tmp>0) { if(li>tmp) printf("%d",yi-1+tmp+(li-tmp)*2); else printf("%d",yi-1+tmp); } else { //if(li>k2) printf("%d",yi-1+(li-k2)*3+2*k2); //else printf("%d",yi-1); } } else { if(tmp>0) { if(yi>tmp) printf("%d",li-1+tmp+(yi-tmp)*2); else printf("%d",li-1+tmp); } else { //if(yi>k1) printf("%d",li-1+(yi-k1)*3+2*(k1)); // else printf("%d",li-1); } } } puts(""); return 0; }

 

最后

以上就是俭朴百合最近收集整理的关于L Eventual … Journey的全部内容,更多相关L内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部