show/hide this revision's text 9 C# floating-point solution added

This works for any integer or long in Python:

def f(n): 
    if n == 0: return 0
    if n >= 0:
        if n % 2 == 1: 
            return n + 1
        else: 
            return -1 * (n - 1)
    else:
        if n % 2 == 1:
            return n - 1
        else:
            return -1 * (n + 1)

Python automatically promotes integers to arbitrary length longs. In other languages the largest positive integer will overflow, so it will work for all integers except that one.


Similar solution in C# (works for any double, except in overflow situations):

static double F(double n)
{
    if (n == 0) return 0;

    if (n < 0)
    	return ((long)Math.Ceiling(n) % 2 == 0) ? (n + 1) : (-1 * (n - 1));
    else
    	return ((long)Math.Floor(n) % 2 == 0) ? (n - 1) : (-1 * (n + 1));
}
show/hide this revision's text 8 deleted 407 characters in body

This works for positive and negative n bit signed integers except 2^(n - 1) - 1any integer or long in Python:

def f(n): 
    if n == 0: return 0
    if n >= 0:
        if n % 2 == 1: 
            return n + 1
        else: 
            return -1 * (n - 1)
    else:
        if n % 2 == 1:
            return n - 1
        else:
            return -1 * (n + 1)

Example for the failing case:

In the case of 32 bit signed

Python automatically promotes integers it fails for 2^31 - 1to arbitrary length longs. The input of In other languages the first invocation 2,147,483,647 is largest positive and odd causing the algorithm to add one. This results in an overflow because 2,147,483,648 is no valid 32 bit signed integer and in consequence returns -2,147,483,648. The second invocation with this value gets a negative and even number causing the algorithm to add one and negate the sum after that. The result will be 2,147,483,647 again. So f(f(2^31 - 1)) == 2^31 - 1 and not -(2^31 - 1)overflow, so it will work for all integers except that one.

show/hide this revision's text 7 added 559 characters in body

This works for positive and negative n bit signed integers except 2^n 2^(n - 1) - 1:

def f(n): 
    if n == 0: return 0
    if n >= 0:
        if n % 2 == 1: 
            return n + 1
        else: 
            return -1 * (n - 1)
    else:
        if n % 2 == 1:
            return n - 1
        else:
            return -1 * (n + 1)

Example for the failing case:

In the case of 32 bit signed integers it fails for 2^31 - 1. The input of the first invocation 2,147,483,647 is positive and odd causing the algorithm to add one. This results in an overflow because 2,147,483,648 is no valid 32 bit signed integer and in consequence returns -2,147,483,648. The second invocation with this value gets a negative and even number causing the algorithm to add one and negate the sum after that. The result will be 2,147,483,647 again. So f(f(2^31 - 1)) == 2^31 - 1 and not -(2^31 - 1).

show/hide this revision's text 6 added 21 characters in body
show/hide this revision's text 5 deleted 45 characters in body
show/hide this revision's text 4 added 41 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 3 added 20 characters in body
show/hide this revision's text 2 added 9 characters in body
show/hide this revision's text 1