結果

問題 No.2700 Please Hack Greedy Solution!
ユーザー kokoseikokosei
提出日時 2024-03-29 22:51:53
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 500 ms
コード長 538 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 100,200 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2025-01-06 11:37:29
合計ジャッジ時間 1,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;

int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int N = 1000, W = 1000;
    cout << N << " " << W << "\n";
    cout << 2000 << " " << 1 << "\n";
    vector<pair<int, int>> a;
    int sum = 2001;
    for(int i = 2;i <= W;i++){
        a.push_back({sum, i});
        sum += 2001;
    }
    reverse(a.begin(), a.end());
    for(auto [v, w] : a){
        cout << v << " " << w << "\n";
    }
    return 0;
}
0