10:古代密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10:古代密码相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<string> #include<algorithm> using namespace std; int a[30],b[30]; string sa,sb; #define rep(i,j,k) for(int i=j;i<=k;i++) bool cmp(int a,int b) { return a>b; } int main() { cin>>sa>>sb; rep(i,0,sa.length()-1) a[sa[i]-64]++; rep(i,0,sb.length()-1) b[sb[i]-64]++; sort(a+1,a+27,cmp); sort(b+1,b+27,cmp); rep(i,1,26) { if(a[i]!=b[i]) { cout<<"NO"; return 0; } } cout<<"YES"; }
以上是关于10:古代密码的主要内容,如果未能解决你的问题,请参考以下文章
4.5星|《中央帝国的财政密码》:货币战争两千年,中国古代王朝兴衰更迭的财政原因
修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段