(2016弱校联盟十一专场10.3) A.Best Matched Pair
Posted Ritchie丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(2016弱校联盟十一专场10.3) A.Best Matched Pair相关的知识,希望对你有一定的参考价值。
#include<cstdio> #include<cstring> #include<algorithm> #include<stack> using namespace std; int n,data[1005]; int cal(int x) { int tx=x; int pre=-1; while(tx) { if(pre!=-1&&tx%10-pre!=-1) return -1; pre = tx%10; tx/=10; } return x; } int main() { scanf("%d",&n); for(int i=0;i<n;i++) scanf("%d",&data[i]); int ans = -1; for(int i=0;i<n;i++) for(int j=i+1;j<n;j++) { ans = max(ans,cal(data[i]*data[j])); } printf("%d\n",ans); }
以上是关于(2016弱校联盟十一专场10.3) A.Best Matched Pair的主要内容,如果未能解决你的问题,请参考以下文章
2016弱校联盟十一专场10.3---Similarity of Subtrees(深搜+hash映射)
(2016弱校联盟十一专场10.3) B.Help the Princess!
(2016弱校联盟十一专场10.5) F. Fibonacci of Fibonacci