2016-2017 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2016)

A - Artwork

Gym - 101550A
题意:给一个n*m的格子,进行q(1 ≤ q ≤ 1e4)次涂色(涂成黑色),每次涂完询问有几个白色联通块。

ProblemA

思路:用并查集模拟,每一次涂色,把被涂色的部分标记为-1,查这一部分周围一圈的位置开始搜,ans -= number.size(),搜出来一个新的就ans++。队友写的代码wrong answer on test 5,但不知道为什么ˊ_>ˋ 我们出了很多测试数据都能过…(后来各种手动加栈发现其实是爆栈了emm,加栈之后这样就超时了emm)
正确的思路应该是 离线并查集 。先全部读入,处理好最后一张图的结果,然后一步一步删操作还原做的。
AC代码

#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
#include <vector>
using namespace std;
const int maxn = 1e6+5;
const int maxn_v = 1e3+5;
const int maxn_q = 1e4+5;
int n, m, q;
int f[maxn];
bool vis[maxn_v][maxn_v];
int g[maxn];
int ans[maxn_q];
int turn[4][2] = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}};
int sum;

struct node {
    int x1, y1, x2, y2;
}nd[maxn_q];

void init_() {
    memset(vis, 0, sizeof vis);
    for(int i = 1; i <= n*m; ++i)
        f[i] = I;
}

int find_(int x) {
    if(f[x] != x)
        f[x] = find_(f[x]);
    return f[x];
}

void union_(int x, int y) {
    int xx = find_(x), yy = find_(y);
    if( xx != yy ) {
        f[xx] = yy;
        --sum;
        return;
    }
    return;
}

void dfs(int x, int y, int id) {
    vis[x][y] = true;
    f[x*m+y+1] = id;
    for(int i = 0; i < 4; ++i) {
        int xx = x + turn[i][0], yy = y + turn[i][1];
        if(xx >= 0 && xx < n && yy >= 0 && yy < m && !vis[xx][yy] && !g[xx*m+yy+1]) {
            dfs(xx, yy, id);
        }
    }
    return;
}

void check() {
    for(int i = 0; i < n; ++i) {
        for(int j = 0; j < m; ++j) {
            printf("%3d", f[i*m+j+1]);
        }
        printf("\n");
    }
}

int main()
{
    scanf("%d%d%d", &m, &n, &q);
    init_();
    int x1, y1, x2, y2;
    for(int q_ = 0; q_ < q; ++q_) {
        scanf("%d%d%d%d", &y1, &x1, &y2, &x2);
        x1--, y1--, x2--, y2--;
        if(y1 == y2) {
            if(x1 > x2) swap(x1, x2);
            for(int i = x1; i <= x2; ++i) {
                ++g[i*m+y1+1];
                //f[i*m+y1+1] = -1;
            }
        }
        else if(x1 == x2) {
            if(y1 > y2) swap(y1, y2);
            for(int j = y1; j <= y2; ++j) {
                ++g[x1*m+j+1];
                //f[x1*m+j+1] = -1;
            }
        }
        nd[q_].x1 = x1, nd[q_].y1 = y1, nd[q_].x2 = x2, nd[q_].y2 = y2;
    }
    sum = 0;
    for(int i = 0; i < n; ++i) {
        for(int j = 0; j < m; ++j) {
            if(!g[i*m+j+1] && !vis[i][j]) {
                dfs(i, j, i*m+j+1);
                ++sum;
            }
        }
    }
    //cout << sum << endl;
    //check();
    int xx, yy;
    for(int q_ = q - 1; q_ >= 0; --q_) {
        ans[q_] = sum;
        x1 = nd[q_].x1, y1 = nd[q_].y1, x2 = nd[q_].x2, y2 = nd[q_].y2;
        if(y1 == y2) {
            for(int i = x1; i <= x2; ++i) {
                --g[i*m+y1+1];
                if(!g[i*m+y1+1]) {
                    ++sum;
                    for(int k = 0; k < 4; ++k) {
                        xx = i + turn[k][0], yy = y1 + turn[k][1];
                        if(xx >= 0 && xx < n && yy >= 0 && yy < m && !g[xx*m+yy+1]) {
                            union_(xx*m+yy+1, i*m+y1+1);
                        }
                    }
                }
            }
        }
        else if(x1 == x2) {
            for(int j = y1; j <= y2; ++j) {
                --g[x1*m+j+1];
                if(!g[x1*m+j+1]) {
                    ++sum;
                    for(int k = 0; k < 4; ++k) {
                        xx = x1 + turn[k][0], yy = j + turn[k][1];
                        if(xx >= 0 && xx < n && yy >= 0 && yy < m && !g[xx*m+yy+1]) {
                            union_(xx*m+yy+1, x1*m+j+1);
                        }
                    }
                }
            }
        }
    }
    for(int q_ = 0; q_ < q; ++q_)
        printf("%d\n", ans[q_]);
    return 0;
}

B - Bless You Autocorrect!

Gym - 101550B
题意:打字预选词系统,现在词库里有n个词,问打出一个单词的最少操作次数。

SampleInput1

如样例1:
autocorrelation - 按下 a + u + t + tab 出现 "autocorrect", 按2次退格键,输入l + a + t + I + o + n 共12次

ProblemB

思路:字典树+BFS
建字典树:相临节点建双向边(可以退格)。分支上第一次出现的字母可以与单词末尾建单向边(可以通过按tab直接输出完整单词)
BFS跑最短路,query()直接查询
建图

AC代码

#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
#include <vector>
#include <queue>
using namespace std;
const int maxn = 1e6+5;
const int maxsize = 26;
int n, m;
char str[maxn];

struct Trie {
    int tot;
    int tree[maxn][maxsize], d[maxn];
    queue<int> que;
    vector<int> g[maxn];
    void init_() {
        tot = 1;
        memset(d, -1, sizeof d);
    }
    void insert_(char *s) {
        vector<int> vec;
        int u = 0, v;
        int len = strlen(s);
        for(int i = 0; i < len; ++i) {
            v = s[i] - 'a';
            if(!tree[u][v]) {
                memset(tree[tot], 0, sizeof tree[tot]);
                g[u].push_back(tot);
                g[tot].push_back(u);  //相临两个节点之间建双向边
                if(i != len-1)
                    vec.push_back(tot);   //存下该节点,用于之后建单向边
                tree[u][v] = tot++;
            }
            u = tree[u][v];
        }
        for(int i = 0; i < (int)vec.size(); ++i) {
            g[vec[i]].push_back(u);
        }
        vec.clear();
    }
    int Query(char *s) {
        int len = strlen(s);
        int ans = len;
        int u = 0, v;
        for(int i = 0; i < len; ++i) {
            v = s[i] - 'a';
            if(!tree[u][v])
                break;
            u = tree[u][v];
            ans = min(ans, d[u] + len - i - 1);
        }
        //cout << ans << endl;
        return ans = min(ans, len);
    }
    void BFS() {
        que.push(0);
        d[0] = 0;
        int u, v;
        while(!que.empty()) {
            u = que.front();
            que.pop();
            for(int i = 0; i < (int)g[u].size(); ++i) {
                v = g[u][I];
                if(d[v] == -1) {
                    d[v] = d[u] + 1;
                    que.push(v);
                }
            }
        }
    }
}trie;

int main() {
    scanf("%d%d", &n, &m);
    trie.init_();
    for(int i = 0; i < n; ++i) {
        scanf("%s", str);
        trie.insert_(str);
    }
    trie.BFS();
    for(int i = 0; i < m; ++i) {
        scanf("%s", str);
        printf("%d\n", trie.Query(str));
    }
    return 0;
}

/*
5 5
austria
autocorrect
program
programming
computer
autocorrelation
programming
competition
zyx
austria
*/

C - Card Hand Sorting

Gym - 101550C

题意:给n(1≤n≤52)张牌,包含花色(s, h, d, c)和数字(2,3,4,5,6,7,8,9,T,J,Q,K,A),你可以将其中的一张牌抽出,放到另一个位置。要求把牌排序,首先按花色分开,其次每个花色内部数字要么升序要么降序,问最少要操作多少次。
思路:模拟+最长上升子序列

D - Daydreaming Stockbroker

Gym - 101550D
题意:股票模拟,主人公有100元钱,给出n天里每天的股票价格,即x元1股,主人公同时持有股不得超过1e5,问主人公最终最多能持有多少钱。
思路:水题,在最低点买入最高点卖出即可,注意边界的判断,例如极大值要大于前一点,大于等于后一点。
AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <map>

using namespace std;
typedef long long ll;
const int maxn = 400;
ll a[maxn];

int main(){
    int d;
    ll money = 100;
    ll gu = 0;
    scanf("%d", &d);
    for(int i = 0; i < d; ++i) {
        scanf("%lld", &a[I]);
    }
    for(int i = 0; i < d; ++i) {
        if( (i==0 && a[i] < a[i+1]) || (i != d-1 && (a[i] <= a[i-1] && a[i] < a[i+1])) ) {
            if(a[i] > money)
                continue;
            gu = money / a[I];
            if(gu > 100000) {
                money -= a[i] * 100000;
                gu = 100000;
            }
            else {
                money -= a[i] * gu;
            }
        }
        else if(i != 0 && (a[i] > a[i-1] && a[i] >= a[i+1])) {
            money += gu * a[I];
        }
    }
    printf("%lld\n", money);
    return 0;
}

E - Exponial

Gym - 101550E

F - Fleecing the Raffle

Gym - 101550F

题意:现在一个抽奖箱里面有n张写有n个人名字的卡片,需要从中抽取p张作为得奖主。现在你想在抽奖箱中加入k张写有你的名字的卡片,你需要确定一个k,使得抽到你且仅抽到你一次的概率最大。并输出该最大概率。
思路:概率计算:
P(k) =\frac { C{^1_k} * C{^{p-1}_n} } { C{^p_{n+k}}}
化简 =\frac { k * n! * p * (n+k-p)! } { (n-p+1)! * (n+k)! }
概率P(k) 应该是有一个峰值的,那么看\frac{P(k+1)}{P(k)}
\frac{P(k+1)}{P(k)} = \frac {(k+1)*(n+k-p+1)}{k*(n+k+1)}
\frac{P(k+1)}{P(k)} > 1k > \frac{p-n-1}{1-p}
k =floor( \frac{p-n-1}{1-p}) + 1
代码求解即可
AC代码

#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
#include <vector>
using namespace std;

int n, p, k;

long double getjc(){
    long double ans = 1;
    for(int i = n, j = n + k; i >= n-p+2 && j >= n+k-p+1; i--, j--) {
        ans *= (long double)I;
        ans /= (long double)j;
    }
    ans /= (long double)(n+k-p+1);
    return ans;
}

int main() {
    scanf("%d%d", &n, &p);
    k = (p - n - 1) / (1 - p);
    k += 1;
    long double ans = (long double)k * (long double)p * getjc();
    printf("%.10Lf\n", ans);
    return 0;
}

G - Game Rank

Gym - 101550G

题意:炉石传说天梯赛模拟,队友A的。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>

using namespace std;

string str;

int ran, star;

int num[50];

void init() {
    for(int i = 1; i <= 10; ++i)
        num[i] = 5;
    for(int i = 11; i <= 15; ++i)
        num[i] = 4;
    for(int i = 16; i <= 20; ++i)
        num[i] = 3;
    for(int i = 21; i <= 25; ++i)
        num[i] = 2;
    ran = 25;
    star = 0;
}

void solve() {
    int n = 0;
    for(int i = 0; i < str.length(); ++i) {
        if(str[i] == 'W' || str[i] == 'w') {
            ++n;
            if(n >= 3 && ran > 5)
                star += 2;
            else
                ++star;
            if(star > num[ran]) {
                star = star - num[ran];
                --ran;
                if(ran < 1)
                    return ;
            }
        }
        else if(str[i] == 'L' || str[i] == 'l') {
            n = 0;
            if(ran < 21) {
                --star;
                if(star < 0) {
                    if(ran < 20) {
                        ++ran;
                        star = num[ran] - 1;
                    }
                    else
                        star = 0;
                }
            }
        }
        //cout << ran << ' ' << star << endl;
    }
}

int main()
{
    getline(cin, str);

    init();
    solve();

    if(ran)
        cout << ran << endl;
    else
        cout << "Legend" << endl;

    return 0;
}

H - Highest Tower

Gym - 101550H

I - Interception

Gym - 101550I

J - Jumbled Compass

Gym - 101550J
题意:一个指南针,从a到b最少可以转多少度
思路:注意180度的时候应该输出正180,不要输出-180

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>

using namespace std;

int main() {
    int a, b;
    scanf("%d%d", &a, &b);
    int ans = 360 - a + b;
    int ans2 = b - a;
    int ans3 = 360 + a - b;
    if( abs(ans2) < 180 ) {
        printf("%d\n", ans2);
    }
    else{
        if(abs(ans) > abs(ans3) ){
            if(ans3 == 180) {
                printf("%d\n", ans3);
            }
            else
            printf("-%d\n", ans3);
        }
        else
            printf("%d\n", ans);
    }
    return 0;
}

K - Keeping the Dogs Apart

Gym - 101550K

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

推荐阅读更多精彩内容

  • (1)获取mac ip地址:命令 ifconfig en0; (2)手机设置代理:代理地址设置macip地址 端口...
    Snails等待阅读 719评论 0 0
  • 紧张,忐忑,在就要见到厉害的人物之时,心中只有这两个词可以形容此时此刻的心情。古代画作里的皇帝身形总是那么的巨大,...
    迪嘉奥特驴阅读 410评论 0 0
  • 最近看了很多人的文章,然后再看看评论,发现越多人看的文章或者课程,越是骂声一片,尤其是时寒冰老师的课程,什么走狗汉...
    陈子健_脑潜能开发师阅读 276评论 0 1
  • 工作内容:继续昨天未完成的任务,与刘伟走访小区,调查装修家庭所用的防水材料。 工作汇报: 1、在做汇报之前,先对...
    牛面马没面阅读 74评论 0 0