ccf模拟题

线性分类器:

#include <algorithm>
#include <iostream>
using namespace std;

const int N = 1010,M=30;
int n,m;
int x[N],y[N],s[N];

//在线上方是1,下方是-1.方向*标志。如果是1*1 
int main(){
    scanf("%d %d",&n,&m);
    for(int i=0;i<n;i++){
        char temp;
        scanf("%d %d %c",&x[i],&y[i],&temp);
        if(temp=='A')s[i]=-1;
        else s[i]=1;
    }
    for(int i=0;i<m;i++){
        int a,b,c;
        scanf("%d %d %d",&a,&b,&c);
        bool result = true;
        int flag=((a+b*x[0]+c*y[0])>0) ? 1 : (-1);
        flag = flag*s[0];
        for(int j=1;j<n;j++){
            int temp = ((a+b*x[j]+c*y[j])>0) ? 1 : (-1);
            temp = temp*s[j];
            if(temp!=flag){
                result = false;
                break;
            }
        }
        if(result)printf("Yes\n");
        else printf("No\n");
    }
    return 0;
}

教训:一定要将测试的printf清理干净

稀疏向量
用c11标准,使用 #include <bits/stdc++.h> using gg = long long; ios::sync_with_stdio(false); cin.tie(0);

#include <bits/stdc++.h>

using namespace std;
using gg = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    gg n,a,b,x,y;
    gg ans=0;
    cin>>n>>a>>b;
    unordered_map<gg,gg> um;
    while(a--) {
        cin>>x>>y;
        um[x] = y;
    }
    while(b--){
        cin>>x>>y;
        ans+=um[x]*y;
    }
    cout<<ans;
    
    return 0;
    
}

报数:

#include <bits/stdc++.h>

using namespace std;
using gg = long long;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    int m[5];
    for(int i=0;i<5;i++){
        m[i] = 0;
    }
    cin>>n;
    int i=0;
    int c=1;
    while(i!=n){
        if(c%7==0){
            m[c%4]++;
        }else if(c%10==7 || (c/10)%10==7 || (c/100)%10==7){
            m[c%4]++;
        }else{
            i++;
        }
        c++;
    }
    for(int i=1;i<4;i++){
        cout<<m[i]<<endl;
    }
    cout<<m[0];
    return 0;
} 

回收站选址:

#include <bits/stdc++.h>

using namespace std;
using gg = long long;
typedef pair<int,int> PII;
int n;

vector<PII> a; 
map<PII,int> b; 
map<PII,int> c; 
int s[5];


int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>n;
    while(n--){
        int x,y;
        cin>>x>>y;
        a.push_back({x,y});
        b[{x+1,y}]++;
        b[{x,y+1}]++;
        b[{x-1,y}]++;
        b[{x,y-1}]++;
        c[{x+1,y+1}]++;
        c[{x-1,y-1}]++;
        c[{x-1,y+1}]++;
        c[{x+1,y-1}]++;
    }
    for(int i=0;i<a.size();i++){
        PII t = a[i];
        if(b[t]==4){
            s[c[t]]++;
        }
    }
    cout<<s[0]<<endl<<s[1]<<endl<<s[2]<<endl<<s[3]<<endl<<s[4];
    
    return 0;
}

化学方程式:
这题非常难,需要重做,下面是抄的代码

#include <bits/stdc++.h>

using namespace std;
using namespace std;
int n;
string formula;
unordered_map<string,int> ans;

int computeDigit(int& first,int last){
    int i=0;
    for(;first<=last and isdigit(formula[first]);++first){
        i = i*10 + formula[first]-'0';
    }
    return i == 0 ? 1:i;
}

void f(int first,int last,int e){
    if(first == last or last-first==1 and islower(formula[last])){
        ans[formula.substr(first,last-first+1)] += e;
        return;
    }
    e *= computeDigit(first,last);
    for(int i= first,j = i+1;i<=last;i=j,++j){
        if(isupper(formula[i])){
            if(j<=last and islower(formula[j]))
                j++;
            int k = j;  //这里非常关键,因为computeDigit函数会改变第一个参数的值,所以j的值需要先保存起来
            f(i,k-1,e*computeDigit(j,last));
        }else if(formula[i] == '('){
            for (int num = 1;num!=0;j++){
                if(formula[j] == '(')num++;
                else if (formula[j] == ')')num--;
            }
            int k=j;
            f(i+1,k-1,e*computeDigit(j,last)) ;
        }
    }
}


void expression(int first,int last,int e){
    for(int i=first,j=first;i<=last;i = j+1){
        j = formula.find('+',i);
        if(j==string::npos or j>last){//这里可以改成end的吧
            j = last + 1;
        } 
        f(i,j-1,e);
    
    }
}

int main(){
    cin>>n;
    while(n--){
        cin>>formula;
        ans.clear();
        int k = formula.find('=');
        expression(0,k-1,1);
        expression(k+1,formula.size()-1,-1);
        
        auto i = find_if(ans.begin(),ans.end(),[](pair<string,int> p){return p.second!=0;});
        cout << ((i == ans.end()) ? "Y" : "N")<<endl;
    } 
    return 0;
} 

测试数据:

8
H2+O2=H2O
2H2+O2=2H2O
H2+Cl2=2NaCl
H2+Cl2=2HCl
CH4+2O2=CO2+2H2O
CaCl2+2AgNO3=Ca(NO3)2+2AgCl
3Ba(OH)2+2H3PO4=6H2O+Ba3(PO4)2
Cu+As=Cs+Au

收获:
find返回数字,表示位置
find_if返回特定对象

ans.clear();
str.find('=');//单纯查字符
int i=0,j=0;//连续声明

24点:
自己写的感觉不错的代码:

#include <bits/stdc++.h>

using namespace std;
int n;
string s;
int num[5]; 
char op[4];

bool f(char a){
    if(a=='+'||a=='-')return true;
    return false;
}

int cal(int a,int b,char oper){
    if(oper=='+'){
        return a+b;
    }else if(oper=='-'){
        return a-b;
    }else if(oper=='x'){
        return a*b;
    }else if(oper=='/'){
        return a/b;
    }
    return 1;
}

int main(){
    cin>>n;
    while(n--){
        cin>>s;
        int a = 0,b = 0;//a表示+-的个数 
        num[1] = s[0];
        num[2] = s[2];
        num[3] = s[4];
        num[4] = s[6];
        int res;
        if(f(s[1]) and !f(s[3]) and !f(s[5])){
            res = cal(cal(cal(num[2]-'0',num[3]-'0',s[3]),num[4]-'0',s[5]),num[1]-'0',s[1]);
            cout<<res<<endl;
            cout<<((  res  ==24) ?"Yes":"No")<<endl;
        }else if(!f(s[1]) and f(s[3]) and !f(s[5])){//
            res = cal(cal(num[1]-'0',num[2]-'0',s[1]),cal(num[3]-'0',num[4]-'0',s[5]),s[3]);
            cout<<res<<endl;
            cout<<((  res  ==24) ?"Yes":"No")<<endl;
        }else if(f(s[1]) and !f(s[3]) and f(s[5])){
            res = cal(cal(cal(num[2]-'0',num[3]-'0',s[3]),num[1]-'0',s[1]),num[4]-'0',s[5]);
            cout<<res<<endl;
            cout<<((  res  ==24) ?"Yes":"No")<<endl;
        }else if(f(s[1]) and f(s[3]) and !f(s[5])){//
            res = cal(cal(num[1]-'0',num[2]-'0',s[1]),cal(num[3]-'0',num[4]-'0',s[5]),s[3]);
            cout<<res<<endl;
            cout<<((  res  ==24) ?"Yes":"No")<<endl;
        }else{
            res = cal(cal(cal(num[1]-'0',num[2]-'0',s[1]),num[3]-'0',s[3]),num[4]-'0',s[5]);
            cout<<res<<endl;
            cout<<((  res  ==24) ?"Yes":"No")<<endl;
        }
    }
    
    return 0;
} 
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,616评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,020评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,078评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,040评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,154评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,265评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,298评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,072评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,491评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,795评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,970评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,654评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,272评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,985评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,815评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,852评论 2 351

推荐阅读更多精彩内容