ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

2019牛客暑期多校训练营(第六场) Is Today Friday?

2019-08-07 12:04:45  阅读:324  来源: 互联网

标签:CABJ 第六场 int 31 Friday list digit 多校 AI


时间限制:C/C++ 5秒,其他语言10秒

空间限制:C/C++ 262144K,其他语言524288K
64bit IO Format: %lld

题目描述

No, it's not Friday :(
  TangTang loves Friday and he has made up a list of n days which are all Friday! Each date in this list is formed as "yyyy/mm/dd", where "yyyy" is a four-digit number representing the year, "mm" is a two-digit number representing the month and "dd" is a two-digit number representing the day. TangTang only considers years between 1600 and 9999 (inclusive), so each year in the list always has four digits, but the months and the days may have leading zeros when it's necessary. For example, "August 3rd, 2019" should be formed as "2019/08/03".
  To store safely, TangTang ciphered the list using a simple substitution cipher. He substituted each digit by a letter between 'A' and 'J' such that the same digits correspond to the same letter and different digits to different letters.
  Unfortunately, TangTang forgot which letter corresponds to which digit. Please help him restore the original list.

输入描述:

There are multiple test cases. The first line contains an integer T (1≤T≤10), indicating the number of test cases. Test cases are given in the following.

For each test case, the first line contains an integer n (1≤n≤1000001), indicating the number of dates.

Each of the next n lines contains a string in the form of "yyyy/mm/dd", representing a ciphered date, where each digit is substituted by an uppercase letter between 'A' and 'J'.

输出描述:

For each test case, output "Case #x: y" in one line (without quotes), where x indicates the case number starting from 1, and y denotes the answer to this test case.

If there is no way to restore the list, then y is "Impossible".

Otherwise, y is a string consisting of ten distinct digits, representing the key to decipher the list. More specifically, the i-th digit in y corresponds to the i-th uppercase letter.

If there are at least two ways, then y is the smallest possible string in the lexicographical order.

输入

2
1
CABJ/AI/AC
5
CABJ/AI/AC
CABJ/AI/AD
CABJ/AI/AE
CABJ/AI/AF
CABJ/AI/AG

输出

Case #1: 0123456789
Case #2: Impossible

题意:给定由A-J组成的字符串,A-J分别对应0-9(对应关系不固定),寻找一个字典序最小的关系,使得给定的字符串都是星期五。

题解:模拟,蔡勒公式

代码:
#include<bits/stdc++.h>
using namespace std;
int days[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
string s[100005];
int check(int y,int m,int d);
int main()
{
  int i,T,n,a[10],y,m,d,flag,ans,cnt=0;
  scanf("%d",&T);
  while(T--)
  {
    printf("Case #%d: ",++cnt);
    ans=0;
    scanf("%d",&n);
    for(i=0;i<n;i++) cin>>s[i];
    for(i=0;i<10;i++) a[i]=i;
    sort(s,s+n);  //去重,防止超时。
    n=unique(s,s+n)-s;
    do
    {
      flag=1;
      for(i=0;i<n;i++)
      {
        y=1000*a[s[i][0]-'A']+100*a[s[i][1]-'A']+10*a[s[i][2]-'A']+a[s[i][3]-'A'];
        m=10*a[s[i][5]-'A']+a[s[i][6]-'A'];
        d=10*a[s[i][8]-'A']+a[s[i][9]-'A'];
        if(!check(y,m,d)) {flag=0;break;}
      }
      if(flag)
      {
        for(i=0;i<10;i++) printf("%d",a[i]);
        printf("\n");
        ans=1;
        break;
      }
    }
    while(next_permutation(a,a+10));
    if(!ans) printf("Impossible\n");
  }
  system("pause");
  return 0;
}
int check(int y,int m,int d)
{
  if(y<1600) return 0; //检验日期合法性
  if(m<1||m>12) return 0;
  int t=days[m];
  if(m==2&&((y%4==0&&y%100!=0)||(y%400==0))) t++;
  if(d>t) return 0;
  
  if(m<3) y-=1,m+=12; //蔡勒公式
  int c=int(y/100);
  y=y-100*c;
  int w=(c/4)-2*c+y+(y/4)+(26*(m+1)/10)+d-1;
  w=(w%7+7)%7;
  return w==5;
}

标签:CABJ,第六场,int,31,Friday,list,digit,多校,AI
来源: https://www.cnblogs.com/VividBinGo/p/11314458.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有