Empty std::function are not that heavy. You could just map to a struct containing one of each. You know which is valid, so only access that one.
If you have template code that needs to operate on both uniformly without being passed in either as an argument:
#include <string>
#include <functional>
#include <map>
#include <tuple>
#include <iostream>
#include <math.h>
template<typename T>
using my_maps = std::tuple< std::map<std::string, std::function<T()>>, std::map<std::string, std::function<T(int)>>>;
int main() {
my_maps<double> maps;
std::get<0>(maps)["pi"] = [](){ return 3.14; };
std::get<1>(maps)["e^"] = [](int x){ return pow( 2.7, x ); };
std::cout << std::get<1>(maps)["e^"](2) << "\n";
std::cout << std::get<0>(maps)["pi"]() << "\n";
}
This has two maps, with the difference in access a get<0> or a get<1>. This has the advantage that if you are picking which of the two to access in a template, it can pick 0 or 1 statically and use common code. If you don't need this, just have two std::maps.
A boost::variant also works (map to a variant of either a 0ary or 1ary function). You can also use a C++11 union (with the note that it will have no default constructor, or copy constructor, unless you supply one) in a struct with an enum (which does the copy of the union) -- basically a ghetto boost::variant.