Submission #1078141

#TimeUsernameProblemLanguageResultExecution timeMemory
1078141c2zi6Robot Contest (IOI23_robot)C++17
6 / 100
89 ms5592 KiB
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define replr(i, a, b) for (int i = int(a); i <= int(b); ++i)
#define reprl(i, a, b) for (int i = int(a); i >= int(b); --i)
#define rep(i, n) for (int i = 0; i < int(n); ++i)
#define mkp(a, b) make_pair(a, b)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<PII> VPI;
typedef vector<VI> VVI;
typedef vector<VVI> VVVI;
typedef vector<VPI> VVPI;
typedef pair<ll, ll> PLL;
typedef vector<ll> VL;
typedef vector<PLL> VPL;
typedef vector<VL> VVL;
typedef vector<VVL> VVVL;
typedef vector<VPL> VVPL;
template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;}
template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;}
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T>
using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#include "robot.h"

void program_pulibot() {
    replr(cur, 0, 0) replr(N, -2, 1) replr(E, -2, 1) replr(S, -2, 1) replr(W, -2, 1) {
        VI INSTRUCTION = {cur, W, S, E, N};
        int COLOR;
        char DIRECTION;

        /*0, -2, -2, 1*/

        if (E == -2) {
            COLOR = 1;
            if (S == -2) DIRECTION = 'T';
            else DIRECTION = 'S';
        } else if (N == -2) {
            COLOR = 1;
            DIRECTION = 'E';
        }

        set_instruction(INSTRUCTION, COLOR, DIRECTION);
    }
}




Compilation message (stderr)

robot.cpp: In function 'void program_pulibot()':
robot.cpp:51:24: warning: 'DIRECTION' may be used uninitialized in this function [-Wmaybe-uninitialized]
   51 |         set_instruction(INSTRUCTION, COLOR, DIRECTION);
      |         ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...