Educational Codeforces Round 68 (Rated for Div. 2) 7-15

各种被卡细节,然后掉绿了QAQ

http://codeforces.com/contest/1194/problem/B

​
#include
using namespace std;
typedef long long ll;

#define P pair
#define in(x) int x;scanf("%d",&x);
#define inL(x) ll x;scanf("%I64d",&x);
#define scL(x) scanf("%I64d",&x);
#define sc(x) scanf("%d",&x);
#define input(A) for(int i=0;i

http://codeforces.com/contest/1194/problem/C

#include
using namespace std;
//int A[105];
int B[27];
int main()
{
    int q;
    scanf("%d",&q);
    string s,t,p;
    while(q--)
    {
        //memset(A,0,sizeof A);
        memset(B,0,sizeof B);
        cin>>s>>t>>p;
        int x=s.length();
        int y=t.length();
        int j=0;
        bool f=0;
        for(int i=0; i=y)
                {
                    // cout<

 

你可能感兴趣的:(Educational Codeforces Round 68 (Rated for Div. 2) 7-15)