結果

問題 No.1010 折って重ねて
ユーザー bond_cmprogbond_cmprog
提出日時 2020-03-20 21:43:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,329 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 166,304 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 21:29:26
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:42:35: warning: iteration 15 invokes undefined behavior [-Waggressive-loop-optimizations]
   42 |     REP(i,40) REP(j,40) if(dp[i][j] != -1) chmax(ans, dp[i][j]);
      |                            ~~~~~~~^
main.cpp:2:35: note: within this loop
    2 | #define REP(i, n) for(int i = 0;i < n;i++)
      |                                   ^
main.cpp:42:15: note: in expansion of macro 'REP'
   42 |     REP(i,40) REP(j,40) if(dp[i][j] != -1) chmax(ans, dp[i][j]);
      |               ^~~
main.cpp:42:35: warning: iteration 15 invokes undefined behavior [-Waggressive-loop-optimizations]
   42 |     REP(i,40) REP(j,40) if(dp[i][j] != -1) chmax(ans, dp[i][j]);
      |                            ~~~~~~~^
main.cpp:2:35: note: within this loop
    2 | #define REP(i, n) for(int i = 0;i < n;i++)
      |                                   ^
main.cpp:42:5: note: in expansion of macro 'REP'
   42 |     REP(i,40) REP(j,40) if(dp[i][j] != -1) chmax(ans, dp[i][j]);
      |     ^~~

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for(int i = 0;i < n;i++)
#define ll long long
using namespace std;
//typedef vector<unsigned int>vec;
//typedef vector<ll>vec;
//typedef vector<vec> mat;
typedef pair<int, int> P;
typedef pair<ll,ll> LP;
const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1};
const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1};
const int INF = 1000000000;
const ll LINF = 1000000000000000000;//1e18
const ll  MOD = 1000000007;
const double PI = acos(-1.0);
const double EPS = 1e-10;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
//template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;};

int dp[15][15];

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll x, y, h;
    cin >> x >> y >> h;
    x *= 1000, y *= 1000;
    memset(dp, -1, sizeof(dp));
    dp[0][0] = 0;
    REP(i,15) REP(j,15){
        if(~dp[i][j]){
            ll H = h << (i + j);
            ll X = x >> i;
            ll Y = y >> j;
            if(X > H) dp[i+1][j] = dp[i][j] + 1;
            if(Y > H) dp[i][j+1] = dp[i][j] + 1;
        }
    }
    int ans = 0;
    REP(i,40) REP(j,40) if(dp[i][j] != -1) chmax(ans, dp[i][j]);
    cout << ans << endl;
}
0