• NOIP2023模拟1联测22 黑暗料理


    NOIP2023模拟1联测22 黑暗料理

    231023_Z3JfkFjjND.png (667×922) (hszxoj.com)

    题目大意

    自己看

    思路

    • 两个数相加能够产生质数的情况就是:1+1 或者 偶数+质数

      那么 1 1 1 不能保留超过一个

    • 建一个图,原点连向所有奇数点,所有偶数点连向汇点,奇数点和偶数点的和为奇数的就相连

      那么答案就是隔断原、汇两点的最小割

    • 判断质数用Miller_Rabin

    code

    #include 
    #define fu(x , y , z) for(int x = y ; x <= z ; x ++)
    #define fd(x , y , z) for(int x = y ; x >= z ; x --)
    #define LL long long 
    using namespace std;
    const int N = 755;
    int n , a[N * N * 2] , p[5] = {2 , 3 , 5 , 7 , 11} , cnt , ans , ans1 , hd[N * N * 2] , pos1[N] , pos2[N * N * 2] , cx1 , cx2 , cx[N] , cy[N] , vis[N];
    struct E {
        int to , nt;
    } e[N * N * 4];
    void add (int x , int y) { e[++cnt].to = y , e[cnt].nt = hd[x] , hd[x] = cnt; }
    bool cmp (int x , int y) { return a[x] > a[y]; }
    LL ksm (LL x , LL y , LL mod) {
        if (!y) return 1;
        LL z = ksm (x , y / 2 , mod);
        z = z * z % mod;
        if (y & 1) z = z * x % mod;
        return z;
    }
    bool ck (LL x , LL y) {
        LL mod = x - 1 , xx;
        if (ksm (y , mod , x) != 1)
            return 0;
        do {
            xx = ksm (y , mod / 2 , x);
            if (xx != 1 && xx != x - 1)
                return 0;
            mod >>= 1;
        } while (mod % 2 == 0 && xx == 1);
        return 1;
    }
    bool mb (LL x) {
        if (x == 1)
            return 0;
        if (x == 2 || x == 3 || x == 5 || x == 7 || x == 11)
            return 1;
        fu (i , 0 , 4) {
            if (!ck (x , p[i])) 
                return 0;
        }
        return 1;
    }
    bool find (int x) {
        int y;
        for (int i = hd[x] ; i ; i = e[i].nt) {
            y = e[i].to;
            if (vis[y]) continue;
            vis[y] = 1;
            if (!cy[y] || find (cy[y])) {
                cx[x] = y , cy[y] = x;
                return 1;
            }
        }
        return 0;
    }
    int main () {
        freopen ("cooking.in" , "r" , stdin);
        freopen ("cooking.out" , "w" , stdout);
        int T , flg;
        scanf ("%d" , &T);
        while (T --) {
            scanf ("%d" , &n);
            fu (i , 1 , n)
                scanf ("%d" , &a[i]);
            cnt = ans1 = ans = flg = cx1 = cx2 = 0;
            fu (i , 1 , n * n * 2) hd[i] = cx[i] = cy[i] = 0;
            fu (i , 1 , n) {
                if (a[i] & 1) {
                    if (a[i] == 1) {
                        if (!flg) flg = 1;
                        else {
                            ans1 ++;
                            continue;
                        }
                    }
                    pos1[++cx1] = i;
                }         
                else
                    pos2[++cx2] = i;
            }
            fu (i , 1 , cx1) {
                fu (j , 1 , cx2) {
                    if (a[pos1[i]] == 51 && a[pos2[j]] == 38) {
                        ans ++;
                        ans --;
                    }
                    if (mb (a[pos1[i]] + a[pos2[j]])) {
                        add (i , cx1 + j);
                        // cout << a[pos1[i]] << " " << a[pos2[j]] << "\n";
                    }
                }
            }
            // exit (0);
            fu (i , 1 , cx1) {
                if (cx[i]) continue;
                fu (j , 1 , cx2) vis[j + cx1] = 0;
                ans += find (i);
            }
            // cout << ans;/
            printf ("%d\n" , n - ans1 - ans);
        }
        return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
  • 相关阅读:
    ROS_TF
    【java】【已解决】IDEA启动报错:Lombok Requires Annotation Processing
    Empire(四)会话管理
    安全开发实战(3)--存活探测与端口扫描
    Linux CPU拓扑
    沈阳建筑大学《乡村振兴战略下传统村落文化旅游设计》 许少辉八一著作
    java计算机毕业设计广西科技大学第一附属医院陪护椅管理源码+mysql数据库+系统+lw文档+部署
    常用sql函数
    全面了解链上身份之Web3社交及相关项目
    如何用arduino去检测声音大小?
  • 原文地址:https://blog.csdn.net/fzyyyyyyyy/article/details/134023000