結果

問題 No.2057 Ising Model
ユーザー 👑 NachiaNachia
提出日時 2024-04-22 22:51:24
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 22:41:47
合計ジャッジ時間 2,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <set>

using namespace std;
using i64 = long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)


const i64 INF = 1001001001001001001;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    i64 N,A,B; cin >> N >> A >> B;
    i64 ans = 0;
    ans = max(ans, N*B - (N-1)*A);
    ans = max(ans, N%2*B + (N-1)*A);
    if(N%2 == 0) ans = max(ans, B*2 + (N-3)*A);
    ans = -ans;
    cout << ans << '\n';
    return 0;
}
0