Codeforces Round #179 (Div. 2) B. Yaroslav and Two Strings (容斥原理)

题目链接

Description

Yaroslav thinks that two strings s and w, consisting of digits and having length n are non-comparable if there are two numbers, i andj(1 ≤ i, j ≤ n), such that si > wi and sj < wj. Here sign si represents the i-th digit of string s, similarly, wj represents the j-th digit of string w.

A string's template is a string that consists of digits and question marks ("?").

Yaroslav has two string templates, each of them has length n. Yaroslav wants to count the number of ways to replace all question marks by some integers in both templates, so as to make the resulting strings incomparable. Note that the obtained strings can contain leading zeroes and that distinct question marks can be replaced by distinct or the same integers.

Help Yaroslav, calculate the remainder after dividing the described number of ways by 1000000007(109 + 7).

Input

The first line contains integer n(1 ≤ n ≤ 105) — the length of both templates. The second line contains the first template — a string that consists of digits and characters "?". The string's length equals n. The third line contains the second template in the same format.

Output

In a single line print the remainder after dividing the answer to the problem by number 1000000007(109 + 7).

Sample Input

Input
2
90
09
Output
1
Input
2
11
55
Output
0
Input
5
?????
?????
Output
993531194

题意:

对于两个数字串 S 和 W,如果存在 i 和 j 使得:S(i)>W(i) && S(j)<W(j) 那么说这两个串是不可比较的,现在给了两个长度均为 n(1≤n≤105) 的串 S 和 W,用 '?' 代表未知的字母,问,有多少种可能的情况,使得 S  和 W 不可比较?

分析:

求出所有可能的情况的数量,设为 ans

求出 S 比 W 大的情况,即:S(i)≥W(i) 的情况数量,设为 res1

求出 S 比 W 小的情况,即;S(i)≤W(i) 的情况数量,设为 res2

求出 S 和 W 相等的情况,即:S(i)==W(i) 的情况数量,设为 res3

结果应该是 ans-res1-res2+res3

 

给的串的所有情况 = s完全>=w的情况  +  w完全>=s的情况  -  s==w的情况  + s>w && s<w的情况。

刚开始用的是所有情况 - 完全大于 - 完全小于 - 完全等于。  这种做法不对,少减了大于和等于 或者 小与和等于混合的情况。

  1 #include <iostream>
  2 #include <cstdio>
  3 #include <cstring>
  4 #include <cstdlib>
  5 #include <cmath>
  6 #include <algorithm>
  7 #define LL __int64
  8 const int maxn = 1e5 + 10;
  9 const LL mo = 1e9 + 7;
 10 using namespace std;
 11 char s[maxn], w[maxn];
 12 LL n, cnt;
 13 
 14 LL cal1()
 15 {
 16     LL i, res = 1;
 17     for(i = 0; i < n; i++)
 18     {
 19         if(s[i]!='?' && w[i]!='?')
 20         {
 21             if(s[i]<w[i])
 22             {
 23                 res = 0;
 24                 break;
 25             }
 26         }
 27         else if(s[i]=='?' && w[i]=='?')
 28         res = (res*55)%mo;
 29         else if(s[i]=='?')
 30         res = (res*(10-w[i]+48))%mo;
 31         else
 32         res = (res*(s[i]-48+1))%mo;
 33     }
 34     return res%mo;
 35 }
 36 
 37 LL cal2()
 38 {
 39     LL i, res = 1;
 40     for(i = 0; i < n; i++)
 41     {
 42         if(s[i]!='?' && w[i]!='?')
 43         {
 44             if(s[i]>w[i])
 45             {
 46                 res = 0;
 47                 break;
 48             }
 49         }
 50         else if(s[i]=='?' && w[i]=='?')
 51         res = (res*55)%mo;
 52         else if(s[i]=='?')
 53         res = (res*(w[i]-48+1))%mo;
 54         else
 55         res = (res*(10-s[i]+48))%mo;
 56     }
 57     return res%mo;
 58 }
 59 
 60 LL cal3()
 61 {
 62     LL i, res = 1;
 63     for(i = 0; i < n; i++)
 64     {
 65         if(s[i]!='?' && w[i]!='?')
 66         {
 67             if(s[i]!=w[i])
 68             {
 69                 res = 0;
 70                 break;
 71             }
 72         }
 73         else if(s[i]=='?' && w[i]=='?')
 74         res = (res*10)%mo;
 75     }
 76     return res%mo;
 77 }
 78 
 79 int main()
 80 {
 81      LL i;
 82      LL ans, res1, res2, res3;
 83      while(~scanf("%I64d", &n))
 84      {
 85          scanf("%s%s", s, w);
 86          ans = 1; cnt = 0;
 87          for(i = 0; i < n; i++)
 88          {
 89              if(s[i]=='?') cnt++;
 90              if(w[i]=='?') cnt++;
 91          }
 92          for(i = 0; i < cnt; i++)
 93          ans = (ans*10)%mo;
 94          res1 = cal1();
 95          res2 = cal2();
 96          res3 = cal3();
 97 
 98          printf("%I64d\n", (ans-res1-res2+res3+mo+mo)%mo);
 99      }
100      return 0;
101 }

 

转载于:https://www.cnblogs.com/bfshm/p/4109219.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值