CodeForces 618B Guess the Permutation
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 618B Guess the Permutation相关的知识,希望对你有一定的参考价值。
只要找出当前没用过的数字中,大于或等于当前这一列的最大值就可以
#include<cstdio> #include<cstring> #include<cmath> #include<vector> #include<algorithm> using namespace std; const int maxn=100; int n; int x[maxn][maxn]; int ans[maxn]; int flag[maxn]; int main() { scanf("%d",&n); for(int i=1; i<=n; i++) for(int j=1; j<=n; j++) scanf("%d",&x[i][j]); memset(flag,0,sizeof flag); for(int j=1; j<=n; j++) { int Max=-1; for(int i=1; i<=n; i++) Max=max(Max,x[i][j]); for(int i=Max; i<=n; i++) { if(flag[i]==0) { ans[j]=i; flag[i]=1; break; } } } for(int i=1; i<=n; i++) printf("%d ",ans[i]); printf("\n"); return 0; }
以上是关于CodeForces 618B Guess the Permutation的主要内容,如果未能解决你的问题,请参考以下文章
codeforces Wunder Fund Round 2016 (Div. 1 + Div. 2 combined) B Guess the Permutation
CodeForces 1363D. Guess The Maximums
CodeForces 1363D. Guess The Maximums
Codeforces Round #245 (Div. 1)——Guess the Tree