• [JSOI2016] 炸弹攻击1


    题目传送门

    模拟退火大法6

    解法

    模拟退火
    随机圆心的位置即可
    调参路漫漫

    Code

    #include 
    #include 
    #include 
    
    #define rep(i, j, k) for (register int i = j; i <= k; i++)
    #define _rep(i, j, k) for (register int i = k; i >= j; i--)
    #define _b_pct __builtin_popcount
    
    using ll = long long;
    using db = double;
    using namespace std;
    
    const int N = 2e4+ 7, M = 2e6+7, K = 16, INF = 1e9;
    const ll inv2 = 499122177, LLF = 1e16, mod = 1e9+7;
    const db eps=1e-6;
    
    int n,m,ans;
    db X,Y,R;
    struct Pos {
        db x,y,r;
    }p[N],em[N];
    
    ll qpow(ll ba, ll pow) {
        ll res = 1;
        while (pow) {
            if (pow & 1)
                res = res * ba % mod;
            ba = ba * ba % mod, pow >>= 1;
        }
        return res;
    }
    
    ll Add(ll x, ll y) { return ((x + y) % mod); }
    
    ll Mul(ll x, ll y) { return ((x * y) % mod); }
    
    ll Del(ll x, ll y) { return (x - y < 0 ? x - y + mod : x - y); }
    
    ll Inv(ll x) { return qpow(x, mod - 2); }
    
    ll Block(ll x) {
        ll res = 0;
        for (ll l = 1, r; l <= x; l = r + 1) {
            r = x / (x / l);
            res = Add(res, Mul((x / l), (r - l + 1)));
        }
        return res;
    }
    
    db Rand() { return (db)rand()/RAND_MAX; }
    
    db solve(db xx,db yy) {
        int tmp=0; db len=INF;
        rep(i,1,n) {
            db tx=p[i].x-xx,ty=p[i].y-yy;
            len=fmin(len,sqrt(tx*tx+ty*ty)-p[i].r);
        }
        len=fmin(len,R);
        if(len<0) tmp=0;
        else {
            rep(i,1,m) {
                db tx=em[i].x-xx,ty=em[i].y-yy;
                if(len>=sqrt(tx*tx+ty*ty)) tmp++;
            }
        }
        if(tmp>ans) ans=tmp,X=xx,Y=yy;
        return tmp;
    }
    
    void SA() {
        db t=300076;
        db nx=X,ny=Y;
        while(t>0.000150) {
            db tx=nx+t*(Rand()*2-1),ty=ny+t*(Rand()*2-1);
            db delta=solve(tx,ty)-solve(nx,ny);
            if(exp(-delta/t)
    • 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
  • 相关阅读:
    Dynamsoft Label Recognizer SDK FOR .CPP.NET
    壁挂式新风机市场现状及未来发展趋势分析
    智能运维和数字孪生赋能智慧城市管理服务平台
    android 将数据库中的 BLOB 对象动态加载为 XML,并设置到 Android Activity 的内容视图上
    Android AlertDialog样式调整
    throw抛出异常后的代码执行情况
    matlab-day05
    蓝桥杯刷题|01普及-真题
    【DW组队学习—动手学数据分析】第二章:第一节数据清洗及特征处理-课程学习
    在uni-app中使用手机号一键登录
  • 原文地址:https://blog.csdn.net/PocketSam/article/details/133563538