03.10训练赛题解与心得(最近松懈+浮躁=爆零)

最近脑子抽的厉害,东学一点,西补一点,着急+浮躁+粗心=爆零啊。

A - Question 1

SPOJ - SERGRID
这就道BFS模板题,没啥好说的,清醒后一发过。。。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <queue>
#include <iostream>
using namespace std;
#define LL long long
#define MAXN 505
#define CLR(x) memset(x, 0, sizeof(x))
char ss[MAXN][MAXN];
int land[MAXN][MAXN];
bool vis[MAXN][MAXN];
int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};
int n, m;

struct node{
    int x, y;
    int step;
};

int BFS()
{
    queue <node> q;
    node now;
    now.x = 0; now.y = 0; now.step = 0;
    q.push(now);
    memset(vis, false, sizeof(vis));
    vis[now.x][now.y] = true;
    while(!q.empty())
    {
        now = q.front();
        q.pop();
        if (now.x == n-1 && now.y == m-1) return now.step;
        int r, c;
        for (int i = 0; i < 4; i++)
        {
            int cnt = land[now.x][now.y];/*可以跳跃的步数*/
            r = now.x + cnt*dx[i];
            c = now.y + cnt*dy[i];
            if (r<n && r>=0 && c<m && c>=0 && !vis[r][c])
            {
                vis[r][c] = true;
                node next;
                next.x = r;
                next.y = c;
                next.step = now.step + 1;
                q.push(next);
            }
        }
    }
    return -1;
}

int main()
{
    scanf("%d %d", &n, &m);
    for (int i = 0; i < n; i++)
    {
        getchar();
        for (int j = 0; j < m; j++)
        {
            scanf("%c", &ss[i][j]);
            land[i][j] = ss[i][j] - '0'; //注意数字是连续输入的,要处理一下
        }
    }
    int res = BFS();
    printf("%d", res);
    return 0;
}

B - Question 2

SPOJ - IAPCR2F **
这题。。并查集模板题,当时脑抽,写了一个while,没跳出死循环,然后累加数据的时候出错了,队友讲题的时候,还大言不惭说找不出错。。。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <iostream>
using namespace std;
#define LL long long
#define MAXN 1005
#define CLR(x) memset(x, 0, sizeof(x))

int pre[MAXN], a[MAXN], res[MAXN];

int cmp(int x, int y)
{
    return x > y;
}

int Find(int x)
{
    return pre[x]==x ? pre[x] : Find(pre[x]);
}

void Uion(int x, int y)
{
    int xx = Find(x), yy = Find(y);
    if (xx != yy)
    {
        pre[xx] = yy;
        //a[yy] += a[xx]; 为啥不在这累加,手推一下就知道了
    }
}

int main()
{
    int t;
    scanf("%d", &t);
    int k = 1;
    while(t--)
    {
        CLR(res);
        CLR(a);
        int n, m;
        scanf("%d%d", &n, &m);
        for (int i = 0; i <= n; i++)
            pre[i] = i;
        for (int i = 1; i <= n; i++)
            scanf("%d", &a[i]);
        int u, v;
        for (int i = 0; i < m; i++)
        {
            scanf("%d %d", &u, &v);
            Uion(u, v);
        }
        int cnt = 0;
        for (int i = 1; i <= n; i++)
        {
            if (pre[i]==i) cnt++;  //原本写了一个while。。无明确跳出,死循环,第一题就一直TLE,心态炸啊
            res[Find(i)] += a[i];
        }
        sort(res+1, res+n+1, cmp);
        if (n==1)
        {
            printf("Case %d: 1\n", k++);
            printf("%d\n", a[1]);
            continue;
        }
        printf("Case %d: %d\n", k++, cnt);
        for (int i = cnt; i >= 1; i--)
        {
            if (i == 1) printf("%d\n", res[1]);
            else printf("%d ", res[i]);
        }
    }
    return 0;
}

C - Question 3

SPOJ - VECTAR1
这题是个矩阵异或。。。记住vis矩阵要开对大小,不然一定会wa

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <queue>
#include <iostream>
using namespace std;
#define LL long long
#define MAXN 1005
#define mod 1000000007
#define CLR(x) memset(x, 0, sizeof(x))

int vis[1000000]; //笔者直接开了1000^2
LL maxx;

void BuildMart(int n, int m)
{
    CLR(vis);
    //CLR(mat);
    maxx = -1;
    for (int i = 1; i <= n; i++)
        for (int j = 1; j <= m; j++)
        {
            vis[i^j]++;
            maxx = max(maxx, (LL)i^j);
        }
    //return maxx;
}

LL JieCeng(LL n)
{
    LL ans = 1;
    for (int i = 2; i <= n; i++)
    {
        ans *= i;
        ans %= mod;
    }
    return ans;
}

int main()
{
    int t;
    scanf("%d", &t);
    while(t--)
    {
        int n, m;
        scanf("%d%d", &n, &m);
        BuildMart(n, m);
        LL res = 1;
        for (int i = 0; i <= maxx; i++)
        {
            if (vis[i])
            {
                res *= JieCeng((LL)vis[i]);
                res %= mod;
            }
        }
        printf("%lld\n", res);
    }
}

D - Question 4

CodeForces - 779B
最简单的一题,笔者理解错意思了,WA在test20,8发,心态崩了,后来在code forces上测数据才明白搞错意思了
笔者 想复杂了,以为要各种分类讨论。。。最近脑子抽。。。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <iostream>
using namespace std;
#define LL long long
#define MAXN 1005
#define CLR(x) memset(x, 0, sizeof(x))
char str[15];
int x;
int main()
{
    scanf("%s %d", str, &x);
    int len = strlen(str);
    int zero = 0, fz = 0;
    for (int i = len-1; i >= 0; i--)
    {
        if (str[i] == '0') zero++;
        else fz++;
        if (zero == x) break;
    }
    if (zero == x) printf("%d", fz); //如果可以整除,输出需要去除的数的个数
    else printf("%d", len-1); //否则直接输出长度减一

    return 0;
}

E - Question 5

CodeForces - 779C
E题其实就是贪心。。。然后,补题的时候理解错题意,数值一直不对,要不就是wa,后来的纸上推了一遍,发现。。。又想多了。。。或者说忘了自己排过序了。。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <iostream>
using namespace std;
#define LL long long
#define mod 1000000007
#define CLR(x) memset(x, 0, sizeof(x))
int n ,m ;
struct node{
    int now, next;
    int d;
}prc[200005];

int cmp(node x, node y)
{
    //if (x.d == y.d) return x.now < y.now;
    return x.d > y.d;
}


int main()
{
    scanf("%d %d", &n, &m);
    for (int i = 0; i < n; i++)
        scanf("%d", &prc[i].now);
    int cnt = 0;
    for (int i = 0; i < n; i++)
    {
         scanf("%d", &prc[i].next);
         prc[i].d = prc[i].next - prc[i].now;
         if (prc[i].d > 0) cnt++; //这周买合算
    }
    sort(prc, prc+n, cmp); //由这周买最合算到最不合算

    LL ans = 0;
    for (int i = 0; i < n; i++)
    {
        if (prc[i].d > 0)//排过序,前头的肯定是最合算
        {
            ans += prc[i].now;
            m--;
        }
        else//本周买最合算的买完后
        {
            if (m > 0) //本周还需买m-cnt个商品
            {
                ans += prc[i].now;
                m--;
            }
            else //下周买
                ans += prc[i].next;
        }
    }
    printf("%I64d", ans);
}

最近真的太急功近利了,该缓缓,好好补缺补漏,打好基础才能走的更远!!

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

推荐阅读更多精彩内容

  • 如果你说太长看不完,就对了,这是一周的读书内容,每天十分钟,五天看完很轻松! 目录 《精要主义》-精读 Day 1...
    超姐666阅读 2,031评论 0 13
  • 2046 文/王三岁 “ 那么,再见了。”墨涵轻声说着,按下了启动键。实验室里的谭小优隔着头罩惊恐地看着墨涵,她听...
    大故事家阅读 460评论 0 2
  • 你也知道,我以前每天都会看到许许多多的酒客。 他们,有西装平整而领带搭肩的;有打扮精致而眼着泪痕的;有衣衫破旧而执...
    丰山心阅读 442评论 0 1
  • 杜甫先生有一句广为人知的诗句:“安得广厦千万间,大庇天下寒士俱欢颜,风雨不动安如山。”——诗中的广厦既是他的美好理...
    古董碎片阅读 422评论 2 6