結果

問題 No.648  お や す み 
ユーザー Yuki_UtaaiYuki_Utaai
提出日時 2018-05-27 23:58:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,995 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 90,600 KB
最終ジャッジ日時 2024-06-30 07:29:14
合計ジャッジ時間 44,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
66,272 KB
testcase_01 AC 358 ms
81,492 KB
testcase_02 AC 53 ms
66,436 KB
testcase_03 AC 359 ms
81,644 KB
testcase_04 AC 434 ms
83,156 KB
testcase_05 AC 53 ms
65,200 KB
testcase_06 AC 446 ms
83,608 KB
testcase_07 AC 418 ms
82,840 KB
testcase_08 AC 460 ms
84,620 KB
testcase_09 AC 52 ms
65,444 KB
testcase_10 AC 565 ms
85,932 KB
testcase_11 AC 514 ms
85,136 KB
testcase_12 AC 521 ms
84,996 KB
testcase_13 AC 538 ms
85,804 KB
testcase_14 AC 488 ms
84,536 KB
testcase_15 AC 508 ms
85,760 KB
testcase_16 AC 521 ms
85,640 KB
testcase_17 AC 530 ms
85,744 KB
testcase_18 AC 507 ms
84,832 KB
testcase_19 AC 499 ms
84,420 KB
testcase_20 AC 283 ms
82,088 KB
testcase_21 WA -
testcase_22 AC 173 ms
79,016 KB
testcase_23 AC 96 ms
77,424 KB
testcase_24 AC 97 ms
77,380 KB
testcase_25 AC 120 ms
77,484 KB
testcase_26 AC 84 ms
77,488 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 77 ms
75,588 KB
testcase_30 AC 399 ms
83,888 KB
testcase_31 AC 386 ms
83,504 KB
testcase_32 AC 391 ms
83,632 KB
testcase_33 AC 393 ms
83,888 KB
testcase_34 AC 392 ms
83,512 KB
testcase_35 AC 445 ms
85,164 KB
testcase_36 AC 415 ms
84,764 KB
testcase_37 AC 392 ms
83,880 KB
testcase_38 AC 436 ms
84,636 KB
testcase_39 AC 398 ms
83,604 KB
testcase_40 AC 392 ms
83,636 KB
testcase_41 AC 391 ms
83,628 KB
testcase_42 AC 393 ms
83,608 KB
testcase_43 AC 398 ms
83,868 KB
testcase_44 AC 418 ms
84,636 KB
testcase_45 AC 392 ms
83,612 KB
testcase_46 AC 412 ms
83,924 KB
testcase_47 AC 402 ms
83,832 KB
testcase_48 AC 392 ms
83,612 KB
testcase_49 AC 386 ms
83,860 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 891 ms
89,096 KB
testcase_61 AC 881 ms
88,988 KB
testcase_62 AC 900 ms
89,172 KB
testcase_63 AC 893 ms
89,112 KB
testcase_64 AC 903 ms
89,172 KB
testcase_65 AC 895 ms
89,252 KB
testcase_66 AC 910 ms
89,136 KB
testcase_67 AC 888 ms
88,912 KB
testcase_68 AC 910 ms
88,988 KB
testcase_69 AC 883 ms
89,032 KB
testcase_70 AC 831 ms
90,364 KB
testcase_71 AC 839 ms
90,600 KB
testcase_72 AC 898 ms
89,584 KB
testcase_73 AC 885 ms
89,020 KB
testcase_74 AC 895 ms
90,000 KB
testcase_75 AC 914 ms
89,772 KB
testcase_76 AC 885 ms
88,732 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 AC 125 ms
77,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

#--------粒 子 群 最 適 化------------------------------

#評価関数: 
def criterion(x, y):
    z=-abs(k-(x*(x+1))/2)
    if x<0:
      z=-10000000000

    return z

#粒子の位置の更新を行う関数
def update_position(x, y, vx, vy):
    new_x = x + vx
    new_y = y + vy
    return new_x, new_y

#粒子の速度の更新を行う関数
def update_velocity(x, y, vx, vy, p, g, w=1, ro_max=1,v_max=100):
    #パラメーターroはランダムに与える
    ro1 = random.uniform(0, ro_max)
    ro2 = random.uniform(0, ro_max)
    #粒子速度の更新を行う
    new_vx = int(w * vx + ro1 * (p[0] - x) + ro2 * (g[0] - x))
    if abs(new_vx)>v_max:
        new_vx=int(v_max*new_vx/abs(new_vx))

    new_vy = w * vy + ro1 * (p[1] - y) + ro2 * (g[1] - y)
    return new_vx, new_vy

def main():
    N = 1000  #粒子の数
    x_min, x_max = 0, k
    y_min, y_max = 0, 0
    #粒子位置, 速度, パーソナルベスト, グローバルベストの初期化を行う
    ps = [[random.randint(x_min, x_max), random.uniform(y_min, y_max)] for i in range(N)]
    vs = [[0.0, 0.0] for i in range(N)]

    personal_best_positions = list(ps)
    personal_best_scores = [criterion(p[0], p[1]) for p in ps]
    best_particle = personal_best_scores.index(max(personal_best_scores))
    global_best_position = personal_best_positions[best_particle]


    T = 600  #世代数(ループの回数)
    for t in range(T):
        for n in range(N):
            x, y = ps[n][0], ps[n][1]
            vx, vy = vs[n][0], vs[n][1]
            p = personal_best_positions[n]

            #粒子の位置の更新を行う
            new_x, new_y = update_position(x, y, vx, vy)
            ps[n] = [new_x, new_y]

            #粒子の速度の更新を行う
            new_vx, new_vy = update_velocity(new_x, new_y, vx, vy, p, global_best_position)
            vs[n] = [new_vx, new_vy]

            #評価値を求め, パーソナルベストの更新を行う
            score = criterion(new_x, new_y)
            if score > personal_best_scores[n]:
                personal_best_scores[n] = score
                personal_best_positions[n] = [new_x, new_y]

        #グローバルベストの更新を行う
        best_particle = personal_best_scores.index(max(personal_best_scores))
        global_best_position = personal_best_positions[best_particle]

        if k==(global_best_position[0]*(global_best_position[0]+1))//2:
          print("YES")
          print(int(global_best_position[0]))
          exit()
 


    #最適解

#    print(max(personal_best_scores), global_best_position)
    return max(personal_best_scores), global_best_position[0], global_best_position[1]
#--------------------------------------------------------------

k=int(input())
best=-100000000000000
xx=0
yy=0
for i in range(3):
    kouho_best, kouho_x, kouho_y=main()
    if best>kouho_best:
        best=kouho_best
        xx=kouho_x
        yy=kouho_y
 
print("NO")
0