AtCoder Beginner Contest 319

AtCoder Beginner Contest 319

A - Legendary Players

思路:
直接map存以下输出即可

#include
using namespace std;
#define int long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
#define per(i,a,n) for(int i=n;i>=a;i--)
#define pb push_back
#define SZ(v) ((int)v.size())
#define fs first
#define sc second
const int N=2e6+10,M=2e5;
typedef double db;
typedef pairpii;
int n,m,k,Q,cnt,t;
vectordel;
int a[200010],b[200010];
int prime[N];
bool st[N];
mapmp;
void solve(){
    mp["tourist"]=3858;
    mp["ksun48"]=3679;
    mp["Benq"]=3658;
    mp["Um_nik"]=3648;
    mp["apiad"]=3638;
    mp["Stonefeang"]=3630;
    mp["ecnerwala"]=3613;
    mp["mnbvmar"]=3555;
    mp["newbiedmy"]=3516;
    mp["semiexp"]=3481;
    string s;cin>>s;
    cout<>t;
    while(t--)solve();
}

B - Measure

思路:
按照题意,枚举每个i,再枚举每个 j,看是否符合倍数要求即可。

#include
using namespace std;
#define int long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
#define per(i,a,n) for(int i=n;i>=a;i--)
#define pb push_back
#define SZ(v) ((int)v.size())
#define fs first
#define sc second
const int N=2e6+10,M=2e5;
typedef double db;
typedef pairpii;
int n,m,k,Q,cnt,t;
vectordel;
int a[200010],b[200010];
int prime[N];
bool st[N];
mapmp;
void solve(){
    cin>>n;
    rep(i,0,n){
        int j=1;
        for(;j<=9;j++){
            if(n%j==0&&(i%(n/j)==0)){
                break;
            }
        }
        if(j<10)cout<>t;
    while(t--)solve();
}

C - False Hope

思路:
因为只有9,我们可以花 O(9!)枚举看的顺序,然后对于每个顺序,我们依次判断每一行、每一列、每一对角线看到的三个数字的顺序是否符合上述要求,累计事件发生的情况即可。

代码里其实是枚举的每个位置是第几次看到的,然后对于第一行的三个位置,就根据第几次看到的排个序,再比较第一次和第二次看到的是否是相同的,且不同于第三个数。

#include 
using namespace std;
using LL = long long;
 
vector> cc{
    {0, 1, 2}, {3, 4, 5}, {6, 7, 8}, {0, 3, 6},
    {1, 4, 7}, {2, 5, 8}, {0, 4, 8}, {2, 4, 6},
};
 
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    array q{};
    for (auto& i : q)
        cin >> i;
    array p{};
    iota(p.begin(), p.end(), 0);
    int ans = 0, tot = 0;
    do {
        ++tot;
        for (auto& c : cc) {
            sort(c.begin(), c.end(), [&](int a, int b) { return p[a] < p[b]; });
            if (q[c[0]] == q[c[1]] && q[c[0]] != q[c[2]]) {
                ++ans;
                break;
            }
        }
 
    } while (next_permutation(p.begin(), p.end()));
    cout << fixed << setprecision(10) << 1. * (tot - ans) / tot << '\n';
 
    return 0;
}
 

D - Minimum Width

思路:
我们可以发现,当每一行的长度很大时肯定可以在m行内保证满足题意,所以可以发现有单调性,所以我们能想到二分答案,但是有些细节要注意

#include
using namespace std;
#define int long long
#define rep(i,a,n) for(int i=a;i<=n;i++)
#define per(i,a,n) for(int i=n;i>=a;i--)
#define pb push_back
#define SZ(v) ((int)v.size())
#define fs first
#define sc second
const int N=2e6+10,M=2e5;
typedef double db;
typedef pairpii;
int n,m,k,Q,cnt,t;
vectordel;
int a[N],b[N],p[N];
int prime[N];
bool st[N];
mapmp;
bool check(int mid){
    int s=a[1],ans=1;
    rep(i,2,n){
        if(s+a[i]+1>mid){
            ans++;
            s=a[i];
            continue;
        }
        if(s+a[i]+1<=mid){
            s+=(a[i]+1);
            //continue;
        }
       
    }
    //if(s>0)ans++;
    if(ans<=m)return true;
    else return false;
}
void solve(){
   cin>>n>>m;
   int sum=0;
   int mx=0;
   rep(i,1,n){
       cin>>a[i];
       mx=max(mx,a[i]);
       sum+=a[i];
   }
   int l=mx-1,r=sum+n;
   while(l+1>1;
       //cout<>t;
    while(t--)solve();
}
//362880 120960
 

你可能感兴趣的:(算法,数据结构,c++)